1234567891011121314151617181920212223242526272829303132333435363738 |
- import { _decorator, Component, Node } from 'cc';
- import { BatchInfoVo } from './BatchInfoVo';
- import { CoinsBatchAwardVo } from './CoinsBatchAwardVo';
- const { ccclass, property } = _decorator;
- /**
- * Predefined variables
- * Name = GolabMemory
- * DateTime = Tue Sep 10 2024 10:41:55 GMT+0800 (中国标准时间)
- * Author = 275996522
- * FileBasename = GolabMemory.ts
- * FileBasenameNoExtension = GolabMemory
- * URL = db://assets/scripts/game/pack/GolabMemory.ts
- * ManualUrl = https://docs.cocos.com/creator/3.3/manual/zh/
- *
- */
-
- @ccclass('GolabMemory')
- export class GolabMemory {
- /**
- * 是否是正式环境 true是 false是测试环境
- */
- isReplse?:boolean ;
- Token:string | undefined;
- /**
- * 场次信息
- */
- Chagnci?:BatchInfoVo ;
-
- /**
- * 存储在推币机上面的礼物
- */
- AwardInfos?:Map<string,CoinsBatchAwardVo>;
- }
|