mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 16:48:23 -05:00
21 lines
678 B
C#
21 lines
678 B
C#
using System;
|
|
|
|
namespace UnityAtoms
|
|
{
|
|
/// <summary>
|
|
/// Internal constant and static readonly members for runtime usage.
|
|
/// </summary>
|
|
public static class Runtime
|
|
{
|
|
public static class Constants
|
|
{
|
|
/// <summary>
|
|
/// Prefix that should be pre-pended to all Debug.Logs made from UnityAtoms to help immediately inform
|
|
/// a user that those logs are made from this library.
|
|
/// </summary>
|
|
public const string LOG_PREFIX = "UnityAtoms :: ";
|
|
}
|
|
public static bool IsUnityAtomsRepo { get => System.Environment.CurrentDirectory.Contains("unity-atoms/Examples"); }
|
|
}
|
|
}
|