UI_Alert_Impl.ts 304 B

123456789
  1. import { GameUILayers } from "../../scripts/GameUILayers";
  2. import { ModuleDef } from "../../scripts/ModuleDef";
  3. @tgx_class(ModuleDef.BASIC,tgx.UIAlert)
  4. export class UIAlert_Impl extends tgx.UIAlert {
  5. constructor() {
  6. super('ui_alert/UI_Alert', GameUILayers.ALERT, tgx.Layout_UIAlert);
  7. }
  8. }