16 lines
261 B
C#
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);
|
|
}
|
|
}
|