1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2024-12-28 00:15:06 +00:00
OpenMW/apps/essimporter/importcntc.cpp
2022-09-22 21:35:26 +03:00

17 lines
235 B
C++

#include "importcntc.hpp"
#include <components/esm3/esmreader.hpp>
namespace ESSImport
{
void CNTC::load(ESM::ESMReader& esm)
{
mIndex = 0;
esm.getHNT(mIndex, "INDX");
mInventory.load(esm);
}
}