using UnityEngine; /// /// Base class for ScriptableObjects that need a public description field. /// public class DescriptionBaseSO : SerializableScriptableObject { [TextArea] public string description; }