2022-06-16 16:01:37 +08:00

24 lines
338 B
TypeScript

import WalletBase from "./WallerBase";
const {ccclass, property} = cc._decorator;
@ccclass
export default class NftList extends WalletBase {
@property(cc.Label)
label: cc.Label = null;
@property
text: string = 'hello';
// LIFE-CYCLE CALLBACKS:
// onLoad () {}
start () {
}
// update (dt) {}
}