public override void Deserialize(ICustomDataInput reader)
 {
     base.Deserialize(reader);
     m_identification = ProtocolTypeManager.GetInstance <TaxCollectorStaticInformations>((short)reader.ReadUShort());
     m_identification.Deserialize(reader);
     m_guildLevel         = reader.ReadSByte();
     m_taxCollectorAttack = reader.ReadInt();
 }
 public GameRolePlayTaxCollectorInformations(TaxCollectorStaticInformations identification, sbyte guildLevel, int taxCollectorAttack)
 {
     m_identification     = identification;
     m_guildLevel         = guildLevel;
     m_taxCollectorAttack = taxCollectorAttack;
 }