Files
SoulliesOfficial 9b1b5ca93f initial
2025-10-03 00:02:43 -04:00

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/";
}
}