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