/* * @brief */ static void Main(string[] args) { var mgr = new DemoMgr(); DemoSystem.Inst.SetMgr(mgr); SystemsSet.Inst.AddSystem(DemoSystem.Inst); SystemsSet.Inst.Init(); //SystemsSet.Inst.Update(); SystemsSet.Inst.Free(); }
/* * @brief 設定管理器 */ public void SetMgr(IManager mgr) { this.mgr = (DemoMgr)mgr; }