AxibugEmuOnline/AxibugEmuOnline.Client/Assets/Script/IEmuCore.cs
2024-11-08 11:31:12 +08:00

28 lines
629 B
C#

using UnityEngine;
namespace AxibugEmuOnline.Client
{
public interface IEmuCore
{
GameObject gameObject { get; }
object GetState();
byte[] GetStateBytes();
void LoadState(object state);
void LoadStateFromBytes(byte[] data);
void Pause();
void Resume();
void SetupScheme();
void StartGame(RomFile romFile);
}
public static class IEnumCoreTool
{
public static bool IsNull(this IEmuCore core)
{
if (core == null) return true;
return core.Equals(null);
}
}
}