Character sheet improvements #4
@@ -1,10 +1,14 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Collections.ObjectModel;
|
||||||
|
using Unity.VisualScripting;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
public class CharacterSheetController : MonoBehaviour
|
public class CharacterSheetController : MonoBehaviour
|
||||||
{
|
{
|
||||||
public CharacterSheet m_characterSheet;
|
[SerializeField] private CharacterSheet m_characterSheet;
|
||||||
public Transform m_characterSheetTransform;
|
[SerializeField] private Transform m_characterSheetTransform;
|
||||||
|
|
||||||
|
public IReadOnlyCollection<CharacterSheet> CharacterSheets => m_characterSheets.Values;
|
||||||
|
|
||||||
private Dictionary<string, CharacterSheet> m_characterSheets = new Dictionary<string, CharacterSheet>();
|
private Dictionary<string, CharacterSheet> m_characterSheets = new Dictionary<string, CharacterSheet>();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user