public override void Deserialize(ICustomDataReader reader)
 {
     this.RecruterId   = reader.ReadVarLong();
     this.RecruterName = reader.ReadUTF();
     this.AllianceInfo = new BasicNamedAllianceInformations();
     this.AllianceInfo.Deserialize(reader);
 }
 public AllianceInvitedMessage InitAllianceInvitedMessage(long RecruterId, String RecruterName, BasicNamedAllianceInformations AllianceInfo)
 {
     this.RecruterId   = RecruterId;
     this.RecruterName = RecruterName;
     this.AllianceInfo = AllianceInfo;
     return(this);
 }
Exemple #3
0
 public override void Deserialize(ICustomDataReader reader)
 {
     base.Deserialize(reader);
     this.AllianceInfos = new BasicNamedAllianceInformations();
     this.AllianceInfos.Deserialize(reader);
 }
Exemple #4
0
 public GuildInAllianceFactsMessage InitGuildInAllianceFactsMessage(BasicNamedAllianceInformations AllianceInfos)
 {
     this.AllianceInfos = AllianceInfos;
     return(this);
 }
 public AlliancedGuildFactSheetInformations InitAlliancedGuildFactSheetInformations(BasicNamedAllianceInformations AllianceInfos)
 {
     this.AllianceInfos = AllianceInfos;
     return(this);
 }
Exemple #6
0
 public AllianceTaxCollectorDialogQuestionExtendedMessage InitAllianceTaxCollectorDialogQuestionExtendedMessage(BasicNamedAllianceInformations Alliance)
 {
     this.Alliance = Alliance;
     return(this);
 }