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

13 lines
141 B
C#

using System;
namespace CPF.Mac.AppKit
{
[Flags]
public enum NSPointingDeviceMask
{
Pen = 0x1,
PenLower = 0x2,
PenUpper = 0x4
}
}