summaryrefslogtreecommitdiff
path: root/Plugins/MonoGame.Extended/source/MonoGame.Extended.Input/MouseButton.cs
blob: e4a00f86fda719b9e3ab1196ad932b579f80bb2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;

namespace MonoGame.Extended.Input
{
    [Flags]
    public enum MouseButton
    {
        None = 0,
        Left = 1,
        Middle = 2,
        Right = 4,
        XButton1 = 8,
        XButton2 = 16
    }
}