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.
22 lines
361 B
22 lines
361 B
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) {}
|
|
}
|
|
|