mirror of
https://github.com/Phantop/LADXHD.git
synced 2024-11-01 04:14:22 +00:00
22 lines
362 B
C#
22 lines
362 B
C#
|
using System;
|
|||
|
|
|||
|
namespace ProjectZ.InGame.Controls
|
|||
|
{
|
|||
|
[Flags]
|
|||
|
public enum CButtons
|
|||
|
{
|
|||
|
None = 0,
|
|||
|
Left = 1,
|
|||
|
Right = 2,
|
|||
|
Up = 4,
|
|||
|
Down = 8,
|
|||
|
A = 16,
|
|||
|
B = 32,
|
|||
|
X = 64,
|
|||
|
Y = 128,
|
|||
|
Select = 256,
|
|||
|
Start = 512,
|
|||
|
//L = 1024,
|
|||
|
//R = 2048
|
|||
|
}
|
|||
|
}
|