squidGame/tgx-games-client/assets/module_arean/ui_enter_room/Layout_UIEnterRoom.ts

17 lines
373 B
TypeScript
Raw Permalink Normal View History

2025-02-07 10:49:34 +08:00
import { _decorator, Button, Component, EditBox, Node } from 'cc';
const { ccclass, property } = _decorator;
@ccclass('Layout_UIEnterRoom')
export class Layout_UIEnterRoom extends Component {
@property(Button)
btnClose:Button;
@property(Button)
btnEnter:Button;
@property(EditBox)
edtId:EditBox;
@property(EditBox)
edtPassword:EditBox;
}