mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-21 01:39:32 +00:00
add power of two values to MouseButton
This commit is contained in:
@@ -5,11 +5,11 @@ namespace MonoGame.Extended.Input
|
|||||||
[Flags]
|
[Flags]
|
||||||
public enum MouseButton
|
public enum MouseButton
|
||||||
{
|
{
|
||||||
None,
|
None = 0,
|
||||||
Left,
|
Left = 1,
|
||||||
Middle,
|
Middle = 2,
|
||||||
Right,
|
Right = 4,
|
||||||
XButton1,
|
XButton1 = 8,
|
||||||
XButton2
|
XButton2 = 16
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user