using System.Collections.Generic; using UnityEngine; namespace MedievalParty.Core { [CreateAssetMenu(menuName = "ScriptableObjects/Characters/List", fileName = "Character")] public class CharacterListSO: ScriptableObject { public List Characters; } }