Files
ZeroVR/ZeroPacientVR/Assets/Octave3D World Builder/Scripts/Math/Box/BoxFacePoint.cs
T
2022-04-18 19:17:20 +03:00

13 lines
182 B
C#

#if UNITY_EDITOR
namespace O3DWB
{
public enum BoxFacePoint
{
Center = 0,
TopLeft,
TopRight,
BottomRight,
BottomLeft
}
}
#endif