BizHawk/BizHawk.Emulation/Consoles/Sega/Genesis/Genesis.Input.cs

29 lines
884 B
C#
Raw Normal View History

2011-01-11 02:55:51 +00:00
namespace BizHawk.Emulation.Consoles.Sega
{
public partial class Genesis
{
public static readonly ControllerDefinition GenesisController = new ControllerDefinition
{
Name = "Genesis 3-Button Controller",
BoolButtons =
{
"Reset",
"P1 Up", "P1 Down", "P1 Left", "P1 Right", "P1 A", "P1 B", "P1 C", "P1 Start"
}
};
2011-02-26 22:08:55 +00:00
public string GetControllersAsMnemonic()
{
return "|........|0|"; //TODO: implement
}
public void SetControllersAsMnemonic(string mnemonic)
{
//TODO
}
2011-01-11 02:55:51 +00:00
public ControllerDefinition ControllerDefinition { get { return GenesisController; } }
public IController Controller { get; set; }
}
}