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