AxibugEmuOnline/AxibugEmuOnline.Client/Assets/Script/IEmuCore.cs

21 lines
476 B
C#
Raw Normal View History

2024-09-23 18:15:34 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace AxibugEmuOnline.Client
{
public interface IEmuCore
{
GameObject gameObject { get; }
2024-09-23 18:15:34 +08:00
object GetState();
byte[] GetStateBytes();
void LoadState(object state);
void LoadStateFromBytes(byte[] data);
void Pause();
void Resume();
void SetupScheme();
void StartGame(RomFile romFile);
2024-09-23 18:15:34 +08:00
}
}