BizHawk/BizHawk.Client.Common/Api/Interfaces/IMemorySaveState.cs

16 lines
249 B
C#

using System;
namespace BizHawk.Client.Common
{
public interface IMemorySaveState : IExternalApi
{
void ClearInMemoryStates();
void DeleteState(Guid guid);
void LoadCoreStateFromMemory(Guid guid);
Guid SaveCoreStateToMemory();
}
}