1234567891011121314151617181920 |
- using System.Collections.Generic;
- namespace GFGGame
- {
- public class FightRoleData
- {
- public int cardId;
- public List<int> itemList = new List<int>();
- }
- public class FightRobotData
- {
- public List<int> targetItemList = new List<int>();
- public int targetBaseScore;
- public int targetCardId;
- public int targetCardScore;
- public List<int> skillLvs = new List<int>();
- public int showSuit;//机器人服装,仅展示用
- }
- }
|