mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-09-19 01:58:20 +08:00
14 lines
195 B
C#
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
|
||
|
}
|
||
|
}
|