unity-atoms/Source/Utils/RuntimeConstants.cs
2019-05-27 22:00:00 +02:00

15 lines
468 B
C#

namespace UnityAtoms
{
/// <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 :: ";
}
}