using System.Collections; using System.Collections.Generic; using UnityEngine; namespace WK.UI { /// /// ½çÃæ /// public class PanelBase : MonoBehaviour { protected void Awake() { OnAwake(); } protected void Start() { OnStart(); } protected virtual void OnAwake() { } protected virtual void OnStart() { } } }