42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
/************************************************************************************
|
|
|
|
* 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;
|
|
} |