2011-01-11 02:55:51 +00:00
|
|
|
|
namespace BizHawk.Emulation.Consoles.Gameboy
|
|
|
|
|
{
|
2011-06-27 00:15:47 +00:00
|
|
|
|
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
|
|
|
|
|
2011-06-27 00:15:47 +00:00
|
|
|
|
public ControllerDefinition ControllerDefinition { get { return GbController; } }
|
|
|
|
|
public IController Controller { get; set; }
|
|
|
|
|
}
|
2011-01-11 02:55:51 +00:00
|
|
|
|
}
|