pubgv3/assets/scripts/tips/ServerNotOpenTip.ts
zhuguoqing 56f6cce2b6 update
2022-05-24 23:56:51 +08:00

29 lines
964 B
TypeScript

// Learn TypeScript:
// - [Chinese] https://docs.cocos.com/creator/manual/zh/scripting/typescript.html
// - [English] http://www.cocos2d-x.org/docs/creator/manual/en/scripting/typescript.html
// Learn Attribute:
// - [Chinese] https://docs.cocos.com/creator/manual/zh/scripting/reference/attributes.html
// - [English] http://www.cocos2d-x.org/docs/creator/manual/en/scripting/reference/attributes.html
// Learn life-cycle callbacks:
// - [Chinese] https://docs.cocos.com/creator/manual/zh/scripting/life-cycle-callbacks.html
// - [English] http://www.cocos2d-x.org/docs/creator/manual/en/scripting/life-cycle-callbacks.html
const { ccclass, property } = cc._decorator;
@ccclass
export default class ServerNotOpenTip extends cc.Component {
public static prefabPath = 'prefabs/tips/pb_servernoopen';
init(data: any) {
// throw new Error('Method not implemented.');
}
onClickOK() {
this.node.destroy();
}
onClose() {
this.node.destroy();
}
}