mirror of
https://github.com/Stone-Red-Code/DesktopMagic.git
synced 2026-09-04 17:06:12 +02:00
29 lines
552 B
C#
29 lines
552 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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,
|
|
}
|
|
} |