/* * @Author: mojunshou 1637302775@qq.com * @Date: 2025-03-19 18:02:51 * @LastEditors: mojunshou 1637302775@qq.com * @LastEditTime: 2025-03-19 18:03:09 * @Description: */ import { _decorator, Component, Node } from 'cc'; import { GameComponent } from 'db://oops-framework/module/common/GameComponent'; const { ccclass, property } = _decorator; @ccclass('KindTipsView') export class KindTipsView extends GameComponent { start() { this.setButton(); } update(deltaTime: number) { } private btn_agree() { console.log("同意"); } private btn_disagree() { console.log("不同意"); //打开新的挽留弹窗 } }