11 lines
305 B
C#
11 lines
305 B
C#
namespace BizHawk.Client.Common
|
|
{
|
|
public interface ISaveState : IExternalApi
|
|
{
|
|
void Load(string path, bool suppressOSD = false);
|
|
void LoadSlot(int slotNum, bool suppressOSD = false);
|
|
void Save(string path, bool suppressOSD = false);
|
|
void SaveSlot(int slotNum, bool suppressOSD = false);
|
|
}
|
|
}
|