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