コード例 #1
0
 public TaxCollectorStaticExtendedInformations(
     uint firstNameId,
     uint lastNameId,
     GuildInformations guildIdentity,
     AllianceInformations allianceIdentity)
     : base(firstNameId, lastNameId, guildIdentity)
 {
     this.allianceIdentity = allianceIdentity;
 }
コード例 #2
0
 public override void Deserialize(IDataReader reader)
 {
     base.Deserialize(reader);
     this.allianceInformations = new AllianceInformations();
     this.allianceInformations.Deserialize(reader);
     this.aggressable = (uint)reader.ReadByte();
     if (this.aggressable < 0U)
     {
         throw new Exception("Forbidden value (" + (object)this.aggressable + ") on element of HumanOptionAlliance.aggressable.");
     }
 }
コード例 #3
0
 public AlliancePrismInformation(
     uint typeId,
     uint state,
     uint nextVulnerabilityDate,
     uint placementDate,
     uint rewardTokenCount,
     AllianceInformations alliance)
     : base(typeId, state, nextVulnerabilityDate, placementDate, rewardTokenCount)
 {
     this.alliance = alliance;
 }
コード例 #4
0
 public HumanOptionAlliance(AllianceInformations allianceInformations, uint aggressable)
 {
     this.allianceInformations = allianceInformations;
     this.aggressable          = aggressable;
 }
コード例 #5
0
 public override void Deserialize(IDataReader reader)
 {
     base.Deserialize(reader);
     this.allianceIdentity = new AllianceInformations();
     this.allianceIdentity.Deserialize(reader);
 }