Example #1
0
 public int GetEaten()
 {
     return(_eatable.GetEaten());
 }
Example #2
0
 public void Eat(IEatable target)
 {
     RecoverHunger(target.HungerRecovery);
     target.GetEaten();
 }