using System.Collections; using System.Collections.Generic; using UnityEngine; public class UnitManager : Singleton { public PCController pc { get; private set; } public List monsters { get; private set; } public void SetPlayerCharacter(PCController pc) { this.pc = pc; } }