1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2024-12-28 18:18:52 +00:00
OpenMW/apps/essimporter/importcntc.hpp
2023-12-17 14:03:45 +01:00

26 lines
342 B
C++

#ifndef OPENMW_ESSIMPORT_IMPORTCNTC_H
#define OPENMW_ESSIMPORT_IMPORTCNTC_H
#include "importinventory.hpp"
namespace ESM
{
class ESMReader;
}
namespace ESSImport
{
/// Changed container contents
struct CNTC
{
int32_t mIndex;
Inventory mInventory;
void load(ESM::ESMReader& esm);
};
}
#endif