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