diff --git a/BizHawk.Emulation.Common/Interfaces/Services/IStatable.cs b/BizHawk.Emulation.Common/Interfaces/Services/IStatable.cs index cf2788bd07..4d4cb863b6 100644 --- a/BizHawk.Emulation.Common/Interfaces/Services/IStatable.cs +++ b/BizHawk.Emulation.Common/Interfaces/Services/IStatable.cs @@ -18,8 +18,11 @@ namespace BizHawk.Emulation.Common /// If unavailable these options will not be exposed /// Additionally many tools depend on savestates such as TAStudio, these will only be available if this service is implemented /// - public interface IStatable : IBinaryStateable, IEmulatorService + public interface IStatable : IEmulatorService { + void SaveStateBinary(BinaryWriter writer); + void LoadStateBinary(BinaryReader reader); + /// /// save state binary to a byte buffer ///