1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-03 17:37:18 +00:00
OpenMW/apps/essimporter/importcntc.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
342 B
C++
Raw Normal View History

2015-01-19 12:16:12 +00:00
#ifndef OPENMW_ESSIMPORT_IMPORTCNTC_H
#define OPENMW_ESSIMPORT_IMPORTCNTC_H
#include "importinventory.hpp"
namespace ESM
{
class ESMReader;
}
namespace ESSImport
{
/// Changed container contents
struct CNTC
{
2023-12-17 13:03:45 +00:00
int32_t mIndex;
2015-01-19 12:16:12 +00:00
Inventory mInventory;
void load(ESM::ESMReader& esm);
};
}
#endif