Mesen-X/Core/SaveStateManager.h

17 lines
304 B
C
Raw Normal View History

#pragma once
#include "stdafx.h"
class SaveStateManager
{
private:
static string GetStateFilepath(int stateIndex);
public:
2016-02-14 18:36:08 -05:00
static const uint32_t FileFormatVersion = 2;
static uint64_t GetStateInfo(int stateIndex);
static void SaveState(int stateIndex);
static bool LoadState(int stateIndex);
};