unity-atoms/Packages/Core/Runtime/References/StringReference.cs
2019-10-15 22:33:06 +02:00

13 lines
294 B
C#

using System;
namespace UnityAtoms
{
/// <summary>
/// Reference of type `string`. Inherits from `AtomReference&lt;string, StringVariable&gt;`.
/// </summary>
[Serializable]
public sealed class StringReference : AtomReference<
string,
StringVariable> { }
}