觉醒时刻
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.

27 lines
482 B

1 week ago
import Common5 from "../../Platform/th/Common5";
import TTAPI from "../../Platform/tt/TTAPI";
const {ccclass, property} = cc._decorator;
@ccclass
export default class DingYueBox extends cc.Component {
onLoad () {
}
start () {
}
onBtnClose(){
// Common5.playEffect("sound/按键点击")
this.node.destroy()
}
onBtnDingYue(){
// Common5.playEffect("sound/按键点击")
TTAPI.dingyueXiaoxi();
}
}