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