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