Exemplo n.º 1
0
 public void BeAwareOfPlant(Plant plant, int x, int y)
 {
     if (isRainingOn(x, y))
     {
         plants.Add(plant);
         plant.AddRain(rainColor);
     }
 }