仓库中添加内置的demo

This commit is contained in:
gongxh
2025-07-28 14:26:19 +08:00
parent 43446f031d
commit 65be0498cc
414 changed files with 14456 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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;
}
}