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