예제 #1
0
        public void EatFood(ConsumableItem food, int number)
        {
            float cal = food.GetCalories() * number;

            bodyManager.AddCalories(cal);

            float size = food.GetSize() * number;

            fullnessPoints.value += size;
        }