You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
361 B
23 lines
361 B
3 months ago
|
import game_xmj from "./game_xmj";
|
||
|
|
||
|
|
||
|
const {ccclass, property} = cc._decorator;
|
||
|
|
||
|
@ccclass
|
||
|
export default class FinishCurGuanQia extends cc.Component {
|
||
|
|
||
|
// LIFE-CYCLE CALLBACKS:
|
||
|
|
||
|
// onLoad () {}
|
||
|
|
||
|
start () {
|
||
|
|
||
|
}
|
||
|
|
||
|
onBtnClose(){
|
||
|
game_xmj.getInstance().initStartContent()
|
||
|
this.node.removeFromParent()
|
||
|
}
|
||
|
// update (dt) {}
|
||
|
}
|