48409ae82b
-Several other fixes (bugfixes, refactoring, etc.) -Added a few more features to debugger
15 lines
No EOL
330 B
C++
15 lines
No EOL
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);
|
|
|
|
}; |