Example #1
0
 public void eat(animal a)
 {
     Console.WriteLine(Name + " is eating " + a.Name);
     a.die();
 }
Example #2
0
 public void eat(animal a)
 {
     eat((creature)a);//to make it go to the right place insted of going back to start
 }