27 lines
838 B
C#
27 lines
838 B
C#
// --------------------------------------------------------------------------------------------------------------------
|
|
// <copyright file="UxrConstants.UI.cs" company="VRMADA">
|
|
// Copyright (c) VRMADA, All rights reserved.
|
|
// </copyright>
|
|
// --------------------------------------------------------------------------------------------------------------------
|
|
namespace UltimateXR.Core
|
|
{
|
|
public static partial class UxrConstants
|
|
{
|
|
#region Public Types & Data
|
|
|
|
/// <summary>
|
|
/// Contains constants used in UI.
|
|
/// </summary>
|
|
public static class UI
|
|
{
|
|
#region Public Types & Data
|
|
|
|
public const int Depth3DObject = int.MinValue;
|
|
public const int Depth2DObject = int.MinValue + 1;
|
|
|
|
#endregion
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
} |