BizHawk/BizHawk.Emulation/Consoles/Gameboy/Input.cs

18 lines
453 B
C#
Raw Normal View History

2011-01-11 02:55:51 +00:00
namespace BizHawk.Emulation.Consoles.Gameboy
{
public partial class Gameboy
{
public static readonly ControllerDefinition GbController = new ControllerDefinition
{
Name = "Gameboy Controller",
BoolButtons =
{
"Up", "Down", "Left", "Right", "A", "B", "Select", "Start"
}
};
2011-01-11 02:55:51 +00:00
public ControllerDefinition ControllerDefinition { get { return GbController; } }
public IController Controller { get; set; }
}
2011-01-11 02:55:51 +00:00
}