using UnityEngine; namespace ZC { public interface IManager { } internal abstract class ManagerBase : GameObjectBase, IManager { } }