Merge systems #5

Closed
JanGross wants to merge 13 commits from managers into master
Showing only changes of commit 37d0c66887 - 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>();