mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
724 B
C++
44 lines
724 B
C++
#ifndef OPENMW_ESSIMPORT_IMPORTINVENTORY_H
|
|
#define OPENMW_ESSIMPORT_IMPORTINVENTORY_H
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include <components/esm/esmcommon.hpp>
|
|
#include <components/esm3/cellref.hpp>
|
|
|
|
#include "importscri.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
class ESMReader;
|
|
}
|
|
|
|
namespace ESSImport
|
|
{
|
|
|
|
struct ContItem
|
|
{
|
|
int32_t mCount;
|
|
ESM::NAME32 mItem;
|
|
};
|
|
|
|
struct Inventory
|
|
{
|
|
struct InventoryItem : public ESM::CellRef
|
|
{
|
|
std::string mId;
|
|
int32_t mCount;
|
|
int32_t mRelativeEquipmentSlot;
|
|
SCRI mSCRI;
|
|
};
|
|
std::vector<InventoryItem> mItems;
|
|
|
|
void load(ESM::ESMReader& esm);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|