10 lines
229 B
C#
10 lines
229 B
C#
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace RPGCoreCommon.Settings
|
|
{
|
|
internal class MainSettingsSO : CustomSettingsSO
|
|
{
|
|
[SerializeReference] internal List<CustomSettingsSO> settings;
|
|
}
|
|
} |