using System.Collections; using System.Collections.Generic; using UnityEngine; /// /// 场景中的固定模块 /// public abstract class ModuleFixed : MonoBehaviour { /// 核心模块 protected virtual ModuleCore ModuleCore => ModuleCore.I; }