Beispiel #1
0
 public Coach(string firstName, string lastName, int id, int age, int heigth, int weigth,
              RaceType raceType, ReligionType religionType, EyeColorType eyeColorType,
              FaceShapeType faceShape, HairColorType hairColor, BodyShapeType bodyShape, int coachCapability)
     : base(firstName, lastName, id, age, heigth, weigth, raceType, religionType, eyeColorType, faceShape, hairColor, bodyShape)
 {
     this.CoachCapability = coachCapability;
 }
 public Player(string firstName, string lastName, int id, int age, int heigth, int weigth, RaceType raceType,
               ReligionType religionType, EyeColorType eyeColorType, FaceShapeType faceShape, HairColorType hairColor, BodyShapeType bodyShape,
               int playerNumber, PlayerPositionType playerPosition, PlayerType playerType, int capability)
     : base(firstName, lastName, id, age, heigth, weigth, raceType, religionType, eyeColorType, faceShape, hairColor, bodyShape)
 {
     this.PlayerNumber   = playerNumber;
     this.PlayerType     = playerType;
     this.PlayerPosition = playerPosition;
     this.Capability     = capability;
 }
Beispiel #3
0
 public Participant(string firstName, string lastName, int id, int age, int heigth, int weigth,
                    RaceType raceType, ReligionType religionType, EyeColorType eyeColorType,
                    FaceShapeType faceShape, HairColorType hairColor, BodyShapeType bodyShape)
 {
     this.Age       = age;
     this.FirstName = firstName;
     this.LastName  = lastName;
     this.ID        = id;
     this.Weight    = weigth;
     this.Heigth    = heigth;
     this.RaceType  = raceType;
     this.Religion  = religionType;
     this.EyeType   = eyeColorType;
     this.FaceShape = faceShape;
     this.HairColor = hairColor;
     this.BodyShape = bodyShape;
 }