// Implement IAnimal interface and redirect to baseCat
 public void eat()
 {
     baseCat.munchOnMeowMix();
 }