using System; namespace BizHawk.Client.ApiHawk { /// /// This enumeration list all buttons /// for all existing controllers /// [Flags] public enum JoypadButton { A = 1, B = 2, C = 4, X = 8, Y = 16, Z = 32, L = 64, R = 128, Start = 256, Select = 512, Up = 1024, Down = 2048, Left = 4096, Right = 8192, /// /// Master system Button 1 /// B1 = 16384, /// /// Master system Button 1 /// B2 = 32768, /// /// N64 C up /// CUp = 65536, /// /// N64 C down /// CDown = 131072, /// /// N64 C Left /// CLeft = 262144, /// /// N64 C Right /// CRight = 524288, /// /// N64 Analog stick /// AnalogStick = 1048576 } }