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