11 lines
381 B
TypeScript
11 lines
381 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);
|
|
}
|
|
} |