CPF/CPF.Mac/Mac/AppKit/NSTouchPhase.cs
2023-11-21 23:05:03 +08:00

14 lines
195 B
C#

namespace CPF.Mac.AppKit
{
public enum NSTouchPhase : ulong
{
Began = 1uL,
Moved = 2uL,
Stationary = 4uL,
Ended = 8uL,
Cancelled = 0x10,
Touching = 7uL,
Any = ulong.MaxValue
}
}