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

12 lines
199 B
C#

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