squidGame/tgx-games-client/assets/module_basic/ui_version_update/Layout_UIVersionUpdate.ts

25 lines
816 B
TypeScript
Raw Normal View History

2025-02-07 10:49:34 +08:00
/************************************************************************************
* FileName : Layout_UIVersionUpdate.ts
* Description :
* Version : v1.0.0
* CreateTime : 2024-10-23 08:47:26
* Author :
* Copyright (c) since 2024
* ==============================================================
* Method Description:
*
* ==============================================================
************************************************************************************/
import {_decorator, Button, Component, Node, Label} from 'cc';
const { ccclass, property } = _decorator;
@ccclass('Layout_UIVersionUpdate')
export class Layout_UIVersionUpdate extends Component {
@property(Button)
btnClose : Button = null;
/** 内容 */
@property(Label)
content : Label = null;
}