/************************************************************************************ * 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; }