-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMouseButton.cs
More file actions
50 lines (42 loc) · 808 Bytes
/
MouseButton.cs
File metadata and controls
50 lines (42 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
using JetBrains.Annotations;
namespace SharpEngine.Core.Input;
/// <summary>
/// Enum, which represents Mouse Buttons
/// </summary>
public enum MouseButton
{
/// <summary>
/// Left Button
/// </summary>
Left = 0,
/// <summary>
/// Right Button
/// </summary>
[UsedImplicitly]
Right = 1,
/// <summary>
/// Middle Button
/// </summary>
[UsedImplicitly]
Middle = 2,
/// <summary>
/// Side Button
/// </summary>
[UsedImplicitly]
Side = 3,
/// <summary>
/// Extra Button
/// </summary>
[UsedImplicitly]
Extra = 4,
/// <summary>
/// Forward Button
/// </summary>
[UsedImplicitly]
Forward = 5,
/// <summary>
/// Back Button
/// </summary>
[UsedImplicitly]
Back = 6
}