Exemple #1
0
 public Animale(float eta, string nome, float peso, string tipoDiNutrizione, Specie specie)
 {
     this.eta              = eta;
     this.nome             = nome;
     this.peso             = peso;
     this.tipoDiNutrizione = tipoDiNutrizione;
     this.specie           = specie;
 }
Exemple #2
0
 public AnimaleAcqua(float eta, string nome, float peso, string tipoDiNutrizione, Specie specie, int numPinne)
     : base(eta, nome, peso, tipoDiNutrizione, specie)
 {
     this.numPinne = numPinne;
 }
Exemple #3
0
 public AnimaleTerra(float eta, string nome, float peso, string tipoDiNutrizione, Specie specie, int numZampe)
     : base(eta, nome, peso, tipoDiNutrizione, specie)
 {
     this.numZampe = numZampe;
 }