blob: 62afc08bdf905c6d41762013b20091c8a12660bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class UnitManager : Singleton<UnitManager>
{
public PCController pc { get; private set; }
public List<MonsterController> monsters { get; private set; }
public void SetPlayerCharacter(PCController pc)
{
this.pc = pc;
}
}
|