22 lines
309 B
TypeScript
22 lines
309 B
TypeScript
import WalletBase from "./WallerBase";
|
|
|
|
const {ccclass, property} = cc._decorator;
|
|
|
|
@ccclass
|
|
export default class WalletMainPanel extends WalletBase {
|
|
|
|
// LIFE-CYCLE CALLBACKS:
|
|
|
|
// onLoad () {}
|
|
|
|
start () {
|
|
|
|
}
|
|
|
|
// update (dt) {}
|
|
|
|
hideWallet() {
|
|
this.node.active = false
|
|
}
|
|
}
|