Exemple #1
0
 public void TakeFlower(Plant plant)
 {
     Console.WriteLine($"U take the flower and increase a bouquet.\n" +
                       $"Plant will be dried after {plant.lifeBar} moves.\n");
 }
Exemple #2
0
 public void WillDried(Plant plant)
 {
     Console.WriteLine($"Plant will be dried after {plant.lifeBar} moves.\n");
 }
Exemple #3
0
 public void Ready(Plant plant)
 {
     Console.WriteLine($"Plant {plant.number} is ready to take.");
 }
Exemple #4
0
 public void NotGrowYet(Plant plant)
 {
     Console.WriteLine($"Your plant {plant.number} will grow after {plant.readyToTake - plant.counterToGrew} moves.");
 }
Exemple #5
0
 public void Wait(Plant plant)
 {
     Console.WriteLine($"Plant {plant.number} will be dried after {plant.lifeBar} moves.\n");
 }