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

11 lines
391 B
TypeScript

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);
}
}