#pragma once #include "Item.h" class Player; class Packet; class Level; class ComplexItem : public Item { protected: ComplexItem(int id); public: virtual bool isComplex(); virtual std::shared_ptr getUpdatePacket( std::shared_ptr itemInstance, Level* level, std::shared_ptr player); };