public Rabbit(EyesColour eyes, FurColour fur, Gender gender, DateTime birthDay) { this.Eyes = eyes; //this.Fur = fur; //this.Gender = gender; this.BirthDay = birthDay; }
public Character(string n, Gender g, HairColour hc, HairStyle hs, EyesColour ec, SkinColour sc, List <OthersAttributes> o) { Name = n; Gender = g; HairColour = hc; HairStyle = hs; EyesColour = ec; SkinColour = sc; Others = o; }