Ejemplo n.º 1
0
 public HumanInformations InitHumanInformations(ActorRestrictionsInformations Restrictions, bool Sex, HumanOption[] Options)
 {
     this.Restrictions = Restrictions;
     this.Sex          = Sex;
     this.Options      = Options;
     return(this);
 }
 public override void Deserialize(ICustomDataReader reader)
 {
     this.ActorId      = reader.ReadDouble();
     this.Restrictions = new ActorRestrictionsInformations();
     this.Restrictions.Deserialize(reader);
 }
 public SetCharacterRestrictionsMessage InitSetCharacterRestrictionsMessage(double ActorId, ActorRestrictionsInformations Restrictions)
 {
     this.ActorId      = ActorId;
     this.Restrictions = Restrictions;
     return(this);
 }