mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 21:01:52 +00:00
15 lines
274 B
C#
15 lines
274 B
C#
namespace GlitchyEngine;
|
|
|
|
/// <summary>
|
|
/// An enum of all mouse buttons that can be queried using methods in <see cref="Input"/>.
|
|
/// </summary>
|
|
public enum MouseButton : byte
|
|
{
|
|
None = 0,
|
|
LeftButton,
|
|
RightButton,
|
|
MiddleButton,
|
|
XButton1,
|
|
XButton2,
|
|
}
|