mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-22 18:29:30 +00:00
15 lines
226 B
C#
15 lines
226 B
C#
using System;
|
|
|
|
namespace MonoGame.Extended.Input
|
|
{
|
|
[Flags]
|
|
public enum MouseButton
|
|
{
|
|
None = 0,
|
|
Left = 1,
|
|
Middle = 2,
|
|
Right = 4,
|
|
XButton1 = 8,
|
|
XButton2 = 16
|
|
}
|
|
} |