| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Collections.Generic; |
| | | |
| | | public class SinglePack |
| | | { |
| | |
| | | public int unlockedGridCount { get; private set; } //已开启背包格子数 |
| | | private Dictionary<int, ItemModel> items = new Dictionary<int, ItemModel>(); //key 物品位置索引 |
| | | private Dictionary<int, List<int>> itemIDs = new Dictionary<int, List<int>>(); //key 物品ID:物品位置索引 |
| | | |
| | | public List<string> itemGuidList = new List<string>(); //前端界面GUID排序,各个背包根据实际情况使用 |
| | | |
| | | public SinglePack(PackType type) |
| | | { |
| | | this.type = type; |