BizHawk/BizHawk.Client.Common/Api/Interfaces/IInput.cs

11 lines
196 B
C#

using System.Collections.Generic;
namespace BizHawk.Client.Common
{
public interface IInput : IExternalApi
{
Dictionary<string, bool> Get();
Dictionary<string, dynamic> GetMouse();
}
}