Ejemplo n.º 1
0
 public void eat(plant p)
 {
     eat((creature)p);//to make it go to the right place insted of going back to start
 }
Ejemplo n.º 2
0
 public void eat(plant p)
 {
     Console.WriteLine(Name + " is eating " + p.Name);
     p.die();
 }