unity-atoms/Source/Utils/RuntimeConstants.cs

15 lines
474 B
C#
Raw Normal View History

namespace UnityAtoms.Utils
{
/// <summary>
/// Internal constant and static readonly members for runtime usage.
/// </summary>
internal static class RuntimeConstants
{
/// <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 :: ";
}
}