squidGame/tgx-games-client/assets/module_basic/ui_alert/UI_Alert_Impl.ts

11 lines
381 B
TypeScript
Raw Normal View History

2025-02-07 10:49:34 +08:00
import { tgxLayout_UIAlert, tgxUIAlert, tgx_class } from "../../core_tgx/tgx";
import { GameUILayers } from "../../scripts/GameUILayers";
import { ModuleDef } from "../../scripts/ModuleDef";
@tgx_class(ModuleDef.BASIC,tgxUIAlert)
export class UIAlert_Impl extends tgxUIAlert {
constructor() {
super('ui_alert/UI_Alert', GameUILayers.ALERT, tgxLayout_UIAlert);
}
}