GolabMemory.ts 882 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. import { _decorator, Component, Node } from 'cc';
  2. import { BatchInfoVo } from './BatchInfoVo';
  3. import { CoinsBatchAwardVo } from './CoinsBatchAwardVo';
  4. const { ccclass, property } = _decorator;
  5. /**
  6. * Predefined variables
  7. * Name = GolabMemory
  8. * DateTime = Tue Sep 10 2024 10:41:55 GMT+0800 (中国标准时间)
  9. * Author = 275996522
  10. * FileBasename = GolabMemory.ts
  11. * FileBasenameNoExtension = GolabMemory
  12. * URL = db://assets/scripts/game/pack/GolabMemory.ts
  13. * ManualUrl = https://docs.cocos.com/creator/3.3/manual/zh/
  14. *
  15. */
  16. @ccclass('GolabMemory')
  17. export class GolabMemory {
  18. /**
  19. * 是否是正式环境 true是 false是测试环境
  20. */
  21. isReplse?:boolean ;
  22. Token:string | undefined;
  23. /**
  24. * 场次信息
  25. */
  26. Chagnci?:BatchInfoVo ;
  27. /**
  28. * 存储在推币机上面的礼物
  29. */
  30. AwardInfos?:Map<string,CoinsBatchAwardVo>;
  31. }