Mesen-X/Core/SaveStateManager.h
2016-08-27 16:34:53 -04:00

17 lines
No EOL
304 B
C++

#pragma once
#include "stdafx.h"
class SaveStateManager
{
private:
static string GetStateFilepath(int stateIndex);
public:
static const uint32_t FileFormatVersion = 5;
static uint64_t GetStateInfo(int stateIndex);
static void SaveState(int stateIndex);
static bool LoadState(int stateIndex);
};