28 lines
848 B
C#
28 lines
848 B
C#
// --------------------------------------------------------------------------------------------------------------------
|
|
// <copyright file="UxrConstants.Paths.cs" company="VRMADA">
|
|
// Copyright (c) VRMADA, All rights reserved.
|
|
// </copyright>
|
|
// --------------------------------------------------------------------------------------------------------------------
|
|
using UnityEngine;
|
|
|
|
namespace UltimateXR.Core
|
|
{
|
|
public static partial class UxrConstants
|
|
{
|
|
#region Public Types & Data
|
|
|
|
/// <summary>
|
|
/// Contains constants describing file paths in the framework.
|
|
/// </summary>
|
|
public static class Paths
|
|
{
|
|
#region Public Types & Data
|
|
|
|
public const string SingletonResources = "Singletons/";
|
|
|
|
#endregion
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
} |