unity-atoms/Packages/Core/Runtime/Constants/StringConstant.cs

12 lines
364 B
C#
Raw Normal View History

using UnityEngine;
namespace UnityAtoms
{
2019-10-15 16:33:06 -04:00
/// <summary>
/// Constant of type `string`. Inherits from `AtomBaseVariable&lt;string&gt;`.
/// </summary>
2019-10-14 10:51:54 -04:00
[EditorIcon("atom-icon-teal")]
[CreateAssetMenu(menuName = "Unity Atoms/Constants/String", fileName = "StringConstant")]
public sealed class StringConstant : AtomBaseVariable<string> { }
}