const {ccclass, property} = cc._decorator; import TextBtn from "./TextBtn"; import WalletBase from "./WallerBase"; @ccclass export default class ButtonGroup extends WalletBase { @property({ type: [TextBtn] }) btns: TextBtn[] = []; // LIFE-CYCLE CALLBACKS: // onLoad () {} start () { } // update (dt) {} }