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