2022-06-19 15:03:30 +08:00

26 lines
389 B
TypeScript

import WalletBase from "./WallerBase";
const {ccclass, property} = cc._decorator;
@ccclass
export default class NftList extends WalletBase {
@property(cc.Prefab)
tokenPreb: cc.Prefab = null
@property(cc.Node)
contentNode: cc.Node = null
public address: string = ''
// LIFE-CYCLE CALLBACKS:
// onLoad () {}
start () {
}
// update (dt) {}
}