Files

15 lines
218 B
C#
Raw Permalink Normal View History

2026-08-27 10:57:58 -06:00
namespace Pulsar.Common.Enums
{
public enum MouseAction
{
LeftDown,
LeftUp,
RightDown,
RightUp,
MoveCursor,
ScrollUp,
ScrollDown,
None
}
}