unity-atoms/Source/Utils/RuntimeConstants.cs

15 lines
468 B
C#
Raw Normal View History

2019-05-27 22:00:00 +02:00
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 :: ";
}
}