RedPackeItemView.ts 493 B

12345678910111213141516171819
  1. /*
  2. * @Author: mojunshou 1637302775@qq.com
  3. * @Date: 2025-03-20 18:39:37
  4. * @LastEditors: mojunshou 1637302775@qq.com
  5. * @LastEditTime: 2025-03-21 14:30:02
  6. * @Description: 红包列表item
  7. */
  8. import { _decorator } from 'cc';
  9. import { GameComponent } from "db://oops-framework/module/common/GameComponent";
  10. const { ccclass, property } = _decorator;
  11. /** 显示对象控制 */
  12. @ccclass('RedPackeItemView')
  13. export class RedPackeItemView extends GameComponent {
  14. protected start() {
  15. }
  16. }