| 1234567891011121314151617 | 
							- using System.Collections.Generic;
 
- namespace GFGGame
 
- {
 
-     public class CardData
 
-     {
 
-         public int id;
 
-         public int lv;
 
-         public int exp;
 
-         public int star;
 
-         public string res;//当前卡面
 
-         public int mainScore;
 
-         public List<string> resources;//所有配置卡面
 
-         public Dictionary<int, int> scores;
 
-         public ItemCfg itemCfg;
 
-     }
 
- }
 
 
  |