mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-23 17:19:39 +00:00
16 lines
303 B
C++
16 lines
303 B
C++
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
|
|
class SaveStateManager
|
|
{
|
|
private:
|
|
static const uint32_t FileFormatVersion = 1;
|
|
static string GetStateFilepath(int stateIndex);
|
|
|
|
public:
|
|
static uint64_t GetStateInfo(int stateIndex);
|
|
static void SaveState(int stateIndex);
|
|
static bool LoadState(int stateIndex);
|
|
|
|
}; |