15 lines
330 B
C
15 lines
330 B
C
|
#pragma once
|
||
|
|
||
|
#include "stdafx.h"
|
||
|
|
||
|
class SaveStateManager
|
||
|
{
|
||
|
private:
|
||
|
static wstring SaveStateManager::GetStateFilepath(int stateIndex);
|
||
|
|
||
|
public:
|
||
|
static uint64_t SaveStateManager::GetStateInfo(int stateIndex);
|
||
|
static void SaveStateManager::SaveState(int stateIndex);
|
||
|
static bool SaveStateManager::LoadState(int stateIndex);
|
||
|
|
||
|
};
|