using System; using UnityEngine; namespace RPGCoreCommon.Settings { /// /// Extend this to create new type of settings. These will be automatically added to settings editor window. /// [Serializable] public abstract class CustomSettingsSO : ScriptableObject { } }