26 lines
389 B
TypeScript
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) {}
|
|
}
|