CPF/CPF.Mac/Mac/AppKit/NSGLTextureCubeMap.cs

14 lines
204 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
namespace CPF.Mac.AppKit
{
public enum NSGLTextureCubeMap
{
None = 0,
PositiveX = 34069,
PositiveY = 34071,
PositiveZ = 34073,
NegativeX = 34070,
NegativeY = 34071,
NegativeZ = 34074
}
}