Example #1
0
 public override void Deserialize(IDataReader reader)
 {
     base.Deserialize(reader);
     m_identification = ProtocolTypeManager.GetInstance <TaxCollectorStaticInformations>(reader.ReadUShort());
     m_identification.Deserialize(reader);
     m_guildLevel         = reader.ReadSByte();
     m_taxCollectorAttack = reader.ReadInt();
 }
Example #2
0
 public GameRolePlayTaxCollectorInformations(TaxCollectorStaticInformations identification, sbyte guildLevel, int taxCollectorAttack)
 {
     m_identification     = identification;
     m_guildLevel         = guildLevel;
     m_taxCollectorAttack = taxCollectorAttack;
 }