11 lines
197 B
C#
11 lines
197 B
C#
![]() |
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace BizHawk.Client.ApiHawk
|
|||
|
{
|
|||
|
public interface IInput : IExternalApi
|
|||
|
{
|
|||
|
Dictionary<string, bool> Get();
|
|||
|
Dictionary<string, dynamic> GetMouse();
|
|||
|
}
|
|||
|
}
|