mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 20:12:23 +00:00
15 lines
201 B
C#
15 lines
201 B
C#
using System;
|
|
|
|
namespace MonoGame.Extended.Input
|
|
{
|
|
[Flags]
|
|
public enum MouseButton
|
|
{
|
|
None,
|
|
Left,
|
|
Middle,
|
|
Right,
|
|
XButton1,
|
|
XButton2
|
|
}
|
|
} |