CashWithdrawalView.ts 672 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * @Author: mojunshou 1637302775@qq.com
  3. * @Date: 2025-03-21 15:03:37
  4. * @LastEditors: mojunshou 1637302775@qq.com
  5. * @LastEditTime: 2025-04-10 11:26:51
  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('CashWithdrawalView')
  13. export class CashWithdrawalView extends GameComponent {
  14. protected start() {
  15. }
  16. /**
  17. *
  18. *
  19. *
  20. *
  21. *
  22. *
  23. * list[
  24. *
  25. *
  26. *
  27. *
  28. *
  29. *
  30. * ]
  31. */
  32. }