| 123456789101112131415161718192021 |
- /*
- * @Author: mojunshou 1637302775@qq.com
- * @Date: 2025-03-21 14:43:24
- * @LastEditors: mojunshou 1637302775@qq.com
- * @LastEditTime: 2025-03-21 15:00:43
- * @Description: 游戏通关弹窗
- */
- import { _decorator } from 'cc';
- import { GameComponent } from "db://oops-framework/module/common/GameComponent";
- const { ccclass, property } = _decorator;
- /** 显示对象控制 */
- @ccclass('GamePassView')
- export class GamePassView extends GameComponent {
- protected start() {
- }
- }
|