Esempio n. 1
0
 protected Plant(string name, string type, PlantMood mood, ThirstLevel thirst)
 {
     Name   = name;
     Type   = type;
     Mood   = mood;
     Thirst = thirst;
 }
Esempio n. 2
0
 public Jade(string name, string type, PlantMood mood, ThirstLevel thirst) :
     base(name, type, mood, thirst)
 {
 }
Esempio n. 3
0
 public void UpdatePlant(PlantMood mood) => Mood = mood;