Пример #1
0
 public override void Deserialize(ICustomDataReader reader)
 {
     this.NewLevel        = reader.ReadByte();
     this.JobsDescription = new JobDescription();
     this.JobsDescription.Deserialize(reader);
 }
Пример #2
0
 public JobLevelUpMessage InitJobLevelUpMessage(byte NewLevel, JobDescription JobsDescription)
 {
     this.NewLevel        = NewLevel;
     this.JobsDescription = JobsDescription;
     return(this);
 }