Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the PlayerDetailCardsItem class.
 /// </summary>
 public CardPlayer(string name = default(string), int?level = default(int?), int?maxLevel = default(int?), int?count = default(int?), CardIconUrls iconUrls = default(CardIconUrls))
     : base(name, null, maxLevel, iconUrls)
 {
     Level    = level;
     IconUrls = iconUrls;
     CustomInit();
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the CardListItemsItem class.
 /// </summary>
 public CardBase(string name = default(string), int?id = default(int?), int?maxLevel = default(int?), CardIconUrls iconUrls = default(CardIconUrls))
 {
     Name     = name;
     Id       = id;
     MaxLevel = maxLevel;
     IconUrls = iconUrls;
     CustomInit();
 }
Beispiel #3
0
 /// <summary>
 /// Initializes a new instance of the BattleLogTeamCardsItem class.
 /// </summary>
 public CardBattleLog(string name = default(string), int?level = default(int?), int?maxLevel = default(int?), CardIconUrls iconUrls = default(CardIconUrls))
     : base(name, null, maxLevel, iconUrls)
 {
     Level = level;
     CustomInit();
 }