mirror of
https://github.com/Stone-Red-Code/DesktopMagic.git
synced 2026-09-04 08:56:15 +02:00
Refactor step 1
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
namespace DesktopMagicPluginAPI.Inputs;
|
||||
|
||||
/// <summary>
|
||||
/// Mouse Buttons
|
||||
/// </summary>
|
||||
public enum MouseButton
|
||||
{
|
||||
/// <summary>
|
||||
/// The left mouse button.
|
||||
/// </summary>
|
||||
Left,
|
||||
|
||||
/// <summary>
|
||||
/// The middle mouse button.
|
||||
/// </summary>
|
||||
Middle,
|
||||
|
||||
/// <summary>
|
||||
/// The right mouse button.
|
||||
/// </summary>
|
||||
Right,
|
||||
}
|
||||
Reference in New Issue
Block a user