Exemple #1
0
        public string Feed()
        {
            string nothing = "Nothing to eat";

            if (FoodBowlEmpty)
            {
                nothing = Feeder.ReplenishFood();
            }

            return(nothing);
        }
Exemple #2
0
 public string ReplenishFood()
 {
     return(Feeder.ReplenishFood());
 }