#ifndef OPENMW_ESSIMPORT_IMPORTINVENTORY_H #define OPENMW_ESSIMPORT_IMPORTINVENTORY_H #include #include #include namespace ESM { class ESMReader; } namespace ESSImport { struct Inventory { struct InventoryItem : public ESM::CellRef { std::string mId; int mCount; int mCondition; int mRelativeEquipmentSlot; }; std::vector mItems; void load(ESM::ESMReader& esm); }; } #endif