#ifndef COMPONENTS_ITEMDROP_HPP_ #define COMPONENTS_ITEMDROP_HPP_ #include struct ItemDrop { ItemDrop(InventoryEntry& ie) : item(ie) {} InventoryEntry item; }; #endif // COMPONENTS_ITEMDROP_HPP_