Exemple #1
0
 public override void Deserialize(ICustomDataReader reader)
 {
     base.Deserialize(reader);
     this.AlignmentInfos = new ActorAlignmentInformations();
     this.AlignmentInfos.Deserialize(reader);
 }
 public GameFightMonsterWithAlignmentInformations InitGameFightMonsterWithAlignmentInformations(ActorAlignmentInformations AlignmentInfos)
 {
     this.AlignmentInfos = AlignmentInfos;
     return(this);
 }
Exemple #3
0
 public GameRolePlayCharacterInformations InitGameRolePlayCharacterInformations(ActorAlignmentInformations AlignmentInfos)
 {
     this.AlignmentInfos = AlignmentInfos;
     return(this);
 }
Exemple #4
0
 public GameFightCharacterInformations InitGameFightCharacterInformations(short Level, ActorAlignmentInformations AlignmentInfos, byte Breed, bool Sex)
 {
     this.Level          = Level;
     this.AlignmentInfos = AlignmentInfos;
     this.Breed          = Breed;
     this.Sex            = Sex;
     return(this);
 }