mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-27 19:10:21 +00:00
e7e77ccfa7
Fixed exception throwing to be standard
15 lines
257 B
C++
15 lines
257 B
C++
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
|
|
class SaveStateManager
|
|
{
|
|
private:
|
|
static string GetStateFilepath(int stateIndex);
|
|
|
|
public:
|
|
static uint64_t GetStateInfo(int stateIndex);
|
|
static void SaveState(int stateIndex);
|
|
static bool LoadState(int stateIndex);
|
|
|
|
}; |