GameOverView.ts 729 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. * @Author: mojunshou 1637302775@qq.com
  3. * @Date: 2025-03-14 17:27:03
  4. * @LastEditors: mojunshou 1637302775@qq.com
  5. * @LastEditTime: 2025-03-17 10:48:11
  6. * @Description: 游戏结束页面
  7. */
  8. import { _decorator } from 'cc';
  9. import { GameComponent } from "db://oops-framework/module/common/GameComponent";
  10. const { ccclass, property } = _decorator;
  11. /** 显示对象控制 */
  12. @ccclass('GameOverView')
  13. export class GameOverView extends GameComponent {
  14. protected start() {
  15. this.setButton();
  16. }
  17. /**
  18. * @description: 重新开始
  19. * @return {*}
  20. */
  21. private btn_again() {
  22. }
  23. /**
  24. * @description: 看广告复活
  25. * @return {*}
  26. */
  27. private btn_revive() {
  28. }
  29. }