public void EatFood(ConsumableItem food, int number) { float cal = food.GetCalories() * number; bodyManager.AddCalories(cal); float size = food.GetSize() * number; fullnessPoints.value += size; }