Files
TheVVaS-Assets/RPGCoreCommon/Settings/Runtime/CustomSettingsSO.cs
T
2026-04-25 23:37:10 +02:00

13 lines
316 B
C#

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