Character sheet improvements #4

Merged
AmaanSH merged 6 commits from character_sheet_improvements into master 2023-07-08 20:01:43 +02:00
Showing only changes of commit 4d086fd5b9 - Show all commits

View File

@@ -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>();