using UnityEngine; namespace UnityAtoms { /// /// None generic base class for all atoms. /// public abstract class BaseAtom : ScriptableObject { /// /// A description of the Atom made for developers to document their Atoms. /// [SerializeField] [Multiline] private string _developerDescription; } }