123456789101112131415161718192021 |
- import { _decorator } from 'cc';
- import { ModulerBase } from './ModulerBase';
- import { GameMgr } from './GameMgr';
- import { MapMgr } from './MapMgr';
- const { ccclass, property } = _decorator;
- @ccclass('TowerMgr')
- export class TowerMgr extends ModulerBase {
- start() {
- //GameMgr.Instance.getModuler(MapMgr).test();
- this.getModuler(MapMgr).test();
- }
- protected clearSelf(): void {
-
- }
- update(deltaTime: number) {
-
- }
- }
|