123456789101112131415161718192021222324 |
- import { AudioModel } from "../data/model/System/AudioModel";
- import EventMng from "../manager/EventMng";
- import { TsrpcNet } from "../network/TsrpcNet";
- import { PoolManager } from "./Pool/PoolManager";
- import FguiMgr from "./fgui/FguiMgr";
- export class eg {
- /**
- * 节点池管理
- */
- public static poolManager: PoolManager;
- /** fgui管理 */
- public static fGuiMgr: FguiMgr;
- /** 网络连接 */
- public static tspcNet: TsrpcNet;
- public static init() {
- this.poolManager = new PoolManager();
- this.fGuiMgr = FguiMgr.Instance;
- this.tspcNet = new TsrpcNet();
- }
- }
|