示例#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
 }