16 lines
446 B
C#
16 lines
446 B
C#
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace CW.Common
|
|||
|
{
|
|||
|
/// <summary>This class contains some useful methods used by this asset.</summary>
|
|||
|
internal static class CwShared
|
|||
|
{
|
|||
|
public const string HelpUrlPrefix = "https://carloswilkes.com/Documentation/Common#";
|
|||
|
|
|||
|
public const string ComponentMenuPrefix = "Common/CW ";
|
|||
|
|
|||
|
public const string GameObjectMenuPrefix = "GameObject/CW/Common/";
|
|||
|
}
|
|||
|
}
|