| 12345678910111213141516171819202122 |
- /*
- * @Author: mojunshou 1637302775@qq.com
- * @Date: 2025-03-21 11:57:43
- * @LastEditors: mojunshou 1637302775@qq.com
- * @LastEditTime: 2025-03-21 14:26:30
- * @Description: 惊喜翻倍弹窗
- */
- import { _decorator } from 'cc';
- import { GameComponent } from "db://oops-framework/module/common/GameComponent";
- const { ccclass, property } = _decorator;
- /** 显示对象控制 */
- @ccclass('DoubleRewardsView')
- export class DoubleRewardsView extends GameComponent {
- protected start() {
- }
- }
|