Пример #1
0
 public GameRolePlayTaxCollectorInformations(TaxCollectorStaticInformations identification, byte guildLevel,
                                             int taxCollectorAttack)
 {
     Identification     = identification;
     GuildLevel         = guildLevel;
     TaxCollectorAttack = taxCollectorAttack;
 }
Пример #2
0
 public override void Deserialize(IDataReader reader)
 {
     base.Deserialize(reader);
     m_identification = ProtocolTypeManager.GetInstance <TaxCollectorStaticInformations>((short)reader.ReadUShort());
     m_identification.Deserialize(reader);
     m_guildLevel         = reader.ReadSByte();
     m_taxCollectorAttack = reader.ReadInt();
 }