CPF/CPF.Mac/Mac/AppKit/NSGradientDrawingOptions.cs

13 lines
179 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
using System;
namespace CPF.Mac.AppKit
{
[Flags]
public enum NSGradientDrawingOptions : ulong
{
None = 0x0,
BeforeStartingLocation = 0x1,
AfterEndingLocation = 0x2
}
}