add power of two values to MouseButton

This commit is contained in:
Cairo Batista
2023-02-05 23:35:23 -03:00
parent 5595621db3
commit 05e28afd3a
@@ -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
}
}