2025-02-17 21:36:37 +08:00
|
|
|
/************************************************************************************
|
|
|
|
|
|
|
|
* FileName : Layout_UISetRoom.ts
|
|
|
|
* Description :
|
|
|
|
* Version : v1.0.0
|
|
|
|
* CreateTime : 2024-11-07 10:31:00
|
|
|
|
* Author :
|
|
|
|
* Copyright (c) since 2024
|
|
|
|
* ==============================================================
|
|
|
|
* Method Description:
|
|
|
|
*
|
|
|
|
* ==============================================================
|
|
|
|
************************************************************************************/
|
|
|
|
import { _decorator, Component, Node, Button, EditBox } from 'cc';
|
|
|
|
const { ccclass, property } = _decorator;
|
|
|
|
|
|
|
|
@ccclass('Layout_UISetRoom')
|
|
|
|
export class Layout_UISetRoom extends Component {
|
|
|
|
@property(Button)
|
|
|
|
btnClose : Button = null;
|
|
|
|
|
|
|
|
@property(Button)
|
|
|
|
btnJoin : Button = null;
|
|
|
|
|
|
|
|
@property(Button)
|
|
|
|
btnCreate : Button = null;
|
|
|
|
|
|
|
|
@property(EditBox)
|
|
|
|
inputBox : EditBox = null;
|
|
|
|
|
|
|
|
@property(Node)
|
|
|
|
bg : Node = null;
|
|
|
|
|
|
|
|
@property(Node)
|
|
|
|
bg2 : Node = null;
|
|
|
|
|
|
|
|
@property(Button)
|
|
|
|
btnJoinSure : Button = null;
|
|
|
|
|
|
|
|
@property(Button)
|
|
|
|
btnClose2 : Button = null;
|
2025-02-07 10:49:34 +08:00
|
|
|
}
|