예제 #1
0
파일: lion.cs 프로젝트: m17guy/homework
 public void eat(animal a)
 {
     Console.WriteLine(Name + " is eating " + a.Name);
     a.die();
 }
예제 #2
0
파일: human.cs 프로젝트: m17guy/homework
 public void eat(animal a)
 {
     eat((creature)a);//to make it go to the right place insted of going back to start
 }