#pragma once #include "Item.h" class CarrotOnAStickItem : public Item { public: CarrotOnAStickItem(int id); bool isHandEquipped(); bool isMirroredArt(); std::shared_ptr use( std::shared_ptr itemInstance, Level* level, std::shared_ptr player); };