using System.Collections; using System.Collections.Generic; using UnityEngine; public class MonsterController : UnitController { public override void Initialize(GameObject obj, string folder) { base.Initialize(obj, folder); unitState = gameObject.GetOrAddComponent(); unitState.Initialize(); unitAnimation = gameObject.GetOrAddComponent(); unitAnimation.Initialize(); } public override void Update() { base.Update(); } }