using AibisDream.FixSystem; using UnityEngine; namespace AibisDream { public class ClinicSystem : MonoBehaviour { private void Awake() { FixSystemCenter.SystemDic.Register(this); } private void OnDestroy() { FixSystemCenter.SystemDic.Unregister(); } } }