IStatable - don't inherit IBinaryStateable, I think there was a plan with that interface but it doesn't really have connection with the service interface

This commit is contained in:
adelikat 2020-02-16 15:18:22 -06:00
parent 8a35fa5bcd
commit bfe7eee43f
1 changed files with 4 additions and 1 deletions

View File

@ -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
/// </summary>
public interface IStatable : IBinaryStateable, IEmulatorService
public interface IStatable : IEmulatorService
{
void SaveStateBinary(BinaryWriter writer);
void LoadStateBinary(BinaryReader reader);
/// <summary>
/// save state binary to a byte buffer
/// </summary>