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-02-27 22:33:25 +00:00
|
|
|
|
public void SetControllersAsMnemonic(string mnemonic)
|
|
|
|
|
{
|
|
|
|
|
//TODO
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-26 22:08:55 +00:00
|
|
|
|
public string GetControllersAsMnemonic()
|
2011-02-26 21:36:46 +00:00
|
|
|
|
{
|
|
|
|
|
return "|........|0|";
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-11 02:55:51 +00:00
|
|
|
|
public ControllerDefinition ControllerDefinition { get { return GbController; } }
|
|
|
|
|
public IController Controller { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|