AxibugEmuOnline/AxibugEmuOnline.Client/Assets/Runtime/Controller/IController.cs
2024-06-28 18:08:25 +08:00

16 lines
261 B
C#

using UnityEngine;
namespace AxibugEmuOnline.Client.UNES.Controller
{
public interface IController
{
void Strobe(bool on);
int ReadState();
void PressKey(KeyCode keyCode);
void ReleaseKey(KeyCode keyCode);
}
}