Esempio n. 1
0
 public override void Deserialize(ICustomDataReader reader)
 {
     this.Outcome = reader.ReadVarShort();
     this.Wave    = reader.ReadByte();
     this.Rewards = new FightLoot();
     this.Rewards.Deserialize(reader);
 }
Esempio n. 2
0
 public FightResultListEntry InitFightResultListEntry(short Outcome, byte Wave, FightLoot Rewards)
 {
     this.Outcome = Outcome;
     this.Wave    = Wave;
     this.Rewards = Rewards;
     return(this);
 }