mirror of
https://github.com/Gongxh0901/kunpolibrary
synced 2025-08-05 06:48:42 +00:00
13 lines
358 B
TypeScript
13 lines
358 B
TypeScript
|
|
||
|
|
||
|
import { kunpo } from '../../../header';
|
||
|
const { uiclass, uiprop } = kunpo._uidecorator;
|
||
|
|
||
|
/** UI界面资源加载等待界面 */
|
||
|
@uiclass("Wait", "Basics", "LoadUIWindow")
|
||
|
export class LoadUIWindow extends kunpo.Window {
|
||
|
protected onInit(): void {
|
||
|
this.adapterType = kunpo.AdapterType.Full;
|
||
|
this.type = kunpo.WindowType.Normal;
|
||
|
}
|
||
|
}
|