eg.ts 585 B

1234567891011121314151617181920212223
  1. import { AudioModel } from "../data/model/System/AudioModel";
  2. import EventMng from "../manager/EventMng";
  3. import { PoolManager } from "./Pool/PoolManager";
  4. import FguiMgr from "./fgui/FguiMgr";
  5. export class eg {
  6. /**
  7. * 节点池管理
  8. */
  9. public static poolManager: PoolManager;
  10. /** fgui管理 */
  11. public static fGuiMgr: FguiMgr;
  12. /** 音频管理 */
  13. // public static audio: AudioModel;
  14. public static init() {
  15. this.poolManager = new PoolManager();
  16. this.fGuiMgr = FguiMgr.Instance;
  17. // this.audio = new AudioModel();
  18. }
  19. }