#pragma once #include "FoodItem.h" class Player; class Level; class BowlFoodItem : public FoodItem { public: BowlFoodItem(int id, int nutrition); std::shared_ptr useTimeDepleted(std::shared_ptr instance, Level *level, std::shared_ptr player); };