| 12345678910 |
- import { tgxModuleContext, tgxUIController } from "../core_tgx/tgx";
- import { ModuleDef } from "./ModuleDef";
- //define UI classes which are not in the basic bundle but be called by other bundles.
- export class UI_AboutMe extends tgxUIController { }
- tgxModuleContext.attachModule(UI_AboutMe, ModuleDef.EXTRA);
- export class UI_LoadingExtra extends tgxUIController { }
- tgxModuleContext.attachModule(UI_LoadingExtra, ModuleDef.EXTRA);
|