2015-07-01 23:17:14 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "stdafx.h"
|
|
|
|
|
|
|
|
class SaveStateManager
|
|
|
|
{
|
|
|
|
private:
|
2015-07-11 08:27:22 -04:00
|
|
|
static string GetStateFilepath(int stateIndex);
|
2015-07-01 23:17:14 -04:00
|
|
|
|
|
|
|
public:
|
2015-07-11 08:27:22 -04:00
|
|
|
static uint64_t GetStateInfo(int stateIndex);
|
|
|
|
static void SaveState(int stateIndex);
|
|
|
|
static bool LoadState(int stateIndex);
|
2015-07-01 23:17:14 -04:00
|
|
|
|
|
|
|
};
|