Mesen/Core/SaveStateManager.h
Souryo e7e77ccfa7 Converted all wide strings to utf8 strings
Fixed exception throwing to be standard
2015-07-11 08:27:22 -04:00

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);
};