import { _decorator, Button, Component, EditBox, Label, Node } from 'cc'; const { ccclass, property } = _decorator; @ccclass('Layout_Hall') export class Layout_Hall extends Component { @property(Button) Start_Btn: Button = null; @property(Button) Settings_Btn: Button = null; @property(Button) Rank_Btn: Button = null; @property(Button) Invite_Btn: Button = null; @property(Button) Store_Btn: Button = null; @property(Button) Sign_Btn: Button = null; @property(Button) SideBar_Btn: Button = null; @property(Button) Task_Btn: Button = null; @property(EditBox) Search_EditBox: EditBox = null; @property(Button) Search_Btn: Button = null; @property(Button) Life_Btn: Button = null; @property(Label) Life_Num: Label = null; @property(Label) Life_CountDown: Label = null; }