| | |
| | | using System.Linq;
|
| | | using LitJson;
|
| | | using System;
|
| | | using System.Reflection;
|
| | |
|
| | |
|
| | | public class DailySpecialsModel : GameSystemManager<DailySpecialsModel>
|
| | |
| | | List<Item> itemList = new List<Item>();
|
| | | for (int j = 0; j < giftInfoDict[giftInfokeyList[i]].Count; j++)
|
| | | {
|
| | | Item item = new Item(giftInfoDict[giftInfokeyList[i]][j][0], (ulong)giftInfoDict[giftInfokeyList[i]][j][1]);
|
| | | Item item = new Item(giftInfoDict[giftInfokeyList[i]][j][0], giftInfoDict[giftInfokeyList[i]][j][1]);
|
| | | itemList.Add(item);
|
| | | }
|
| | | itemAllList.Add(itemList);
|