mirror of
https://github.com/Stone-Red-Code/DesktopMagic.git
synced 2026-09-04 00:46:12 +02:00
22 lines
358 B
C#
22 lines
358 B
C#
namespace DesktopMagic.Api.Settings;
|
|
|
|
/// <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,
|
|
} |