/* * InventoryItem.h * * Created on: Dec 11, 2016 * Author: tibi */ #ifndef COMPONENTS_INVENTORY_INVENTORYITEM_H_ #define COMPONENTS_INVENTORY_INVENTORYITEM_H_ #include namespace farmlands { namespace components { namespace basic { class InventoryItem: public model::Component { public: virtual ~InventoryItem(); virtual model::Component* clone() override; virtual void dump(unsigned level) override; size_t slot; }; } /* namespace basic */ } /* namespace components */ } /* namespace farmlands */ #endif /* COMPONENTS_INVENTORY_INVENTORYITEM_H_ */