11 lines
291 B
C#
11 lines
291 B
C#
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace MedievalParty.Core
|
|
{
|
|
[CreateAssetMenu(menuName = "ScriptableObjects/Characters/List", fileName = "Character")]
|
|
public class CharacterListSO: ScriptableObject
|
|
{
|
|
public List<CharacterSO> Characters;
|
|
}
|
|
} |