using System.Collections; using System.Collections.Generic; using UnityEngine; public class UnitBase : EntityBase { protected virtual void Awake() { base.Awake(); } protected virtual void Update() { base.Update(); } protected virtual void LateUpdate() { base.LateUpdate(); } }