The award criteria struct is used to define the query details used when determining if a player has met the requirements to earn an award. This object is used by the "BackendAward" object.
Пример #1
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="AwardId">The award id</param>
 /// <param name="Criterias">The criteria's needed to earn the award</param>
 public BackendAward(int AwardId, AwardCriteria[] Criterias)
 {
     this.AwardId = AwardId;
     this.Criterias = Criterias;
 }