mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-24 09:08:23 -05:00
15 lines
474 B
C#
15 lines
474 B
C#
|
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 :: ";
|
||
|
}
|
||
|
}
|