Esempio n. 1
0
 public override void Deserialize(ICustomDataInput reader)
 {
     base.Deserialize(reader);
     allianceInformations = new AllianceInformations();
     allianceInformations.Deserialize(reader);
     aggressable = reader.ReadSByte();
     if (aggressable < 0)
     {
         throw new Exception("Forbidden value on aggressable = " + aggressable + ", it doesn't respect the following condition : aggressable < 0");
     }
 }
 public override void Deserialize(ICustomDataInput reader)
 {
     base.Deserialize(reader);
     this.allianceIdentity = new AllianceInformations();
     this.allianceIdentity.Deserialize(reader);
 }
 public TaxCollectorStaticExtendedInformations(ushort firstNameId, ushort lastNameId, GuildInformations guildIdentity, AllianceInformations allianceIdentity)
     : base(firstNameId, lastNameId, guildIdentity)
 {
     this.allianceIdentity = allianceIdentity;
 }
Esempio n. 4
0
 public AlliancePrismInformation(sbyte typeId, sbyte state, int nextVulnerabilityDate, int placementDate, uint rewardTokenCount, AllianceInformations alliance)
     : base(typeId, state, nextVulnerabilityDate, placementDate, rewardTokenCount)
 {
     this.alliance = alliance;
 }
Esempio n. 5
0
 public HumanOptionAlliance(AllianceInformations allianceInformations, sbyte aggressable)
 {
     this.allianceInformations = allianceInformations;
     this.aggressable          = aggressable;
 }