squidGame/tgx-games-client/assets/module_arean/ui_player_info/Layout_UIChooseHeadLayer.ts

33 lines
889 B
TypeScript
Raw Normal View History

2025-02-07 10:49:34 +08:00
/************************************************************************************
* FileName : Layout_UIChooseHeadLayer.ts
* Description :
* Version : v1.0.0
* CreateTime : 2025-01-02 10:38:39
* Author :
* Copyright (c) since 2025
* ==============================================================
* Method Description:
*
* ==============================================================
************************************************************************************/
import { _decorator, Component, Node, Button } from 'cc';
const { ccclass, property } = _decorator;
@ccclass('Layout_UIChooseHeadLayer')
export class Layout_UIChooseHeadLayer extends Component {
@property(Button)
sureBtn: Button = null;
@property(Node)
group : Node = null;
@property(Node)
content : Node = null;
@property(Node)
cell : Node = null;
}