blob: ba98f73e0344b3bc9dce758e20992a113ee06553 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
using System;
using System.Collections.Generic;
using KKSG;
namespace XMainClient.UI
{
internal class FindBackData
{
public int findid = 0;
public int maxfindback = 0;
public int findindex = 0;
public bool isfind = false;
public int findbacklevel = 0;
public List<ItemFindBackInfo2Client> findbackinfo = new List<ItemFindBackInfo2Client>();
public Dictionary<int, List<int>> goldItemCount = new Dictionary<int, List<int>>();
public Dictionary<int, List<int>> dragonCoinItemCount = new Dictionary<int, List<int>>();
}
}
|