|
@@ -4,15 +4,16 @@ namespace GFGGame
|
|
{
|
|
{
|
|
public class FightRoleData
|
|
public class FightRoleData
|
|
{
|
|
{
|
|
- public List<int> itemList;
|
|
|
|
public int cardId;
|
|
public int cardId;
|
|
|
|
+ public List<int> itemList = new List<int>();
|
|
|
|
|
|
}
|
|
}
|
|
public class FightRobotData
|
|
public class FightRobotData
|
|
{
|
|
{
|
|
- public List<int> targetItemList;
|
|
|
|
|
|
+ public List<int> targetItemList = new List<int>();
|
|
public int targetBaseScore;
|
|
public int targetBaseScore;
|
|
public int targetCardId;
|
|
public int targetCardId;
|
|
public int targetCardScore;
|
|
public int targetCardScore;
|
|
|
|
+ public List<int> skillLvs = new List<int>();
|
|
}
|
|
}
|
|
}
|
|
}
|