unity-atoms/Packages/Core/Runtime/References/StringReference.cs
2019-10-02 17:36:20 +02:00

10 lines
160 B
C#

using System;
namespace UnityAtoms
{
[Serializable]
public sealed class StringReference : AtomReference<
string,
StringVariable> { }
}