AxibugEmuOnline/AxibugEmuOnline.Client/Assets/Runtime/Controller/IController.cs

16 lines
261 B
C#
Raw Normal View History

2024-06-28 18:08:25 +08:00
using UnityEngine;
namespace AxibugEmuOnline.Client.UNES.Controller
{
public interface IController
{
void Strobe(bool on);
int ReadState();
void PressKey(KeyCode keyCode);
void ReleaseKey(KeyCode keyCode);
}
}