1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-09 21:42:13 +00:00
OpenMW/apps/essimporter/importcntc.cpp

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

18 lines
254 B
C++
Raw Normal View History

2015-01-19 12:16:12 +00:00
#include "importcntc.hpp"
#include <components/esm3/esmreader.hpp>
2023-12-17 14:21:12 +00:00
#include <cstdint>
2015-01-19 12:16:12 +00:00
namespace ESSImport
{
void CNTC::load(ESM::ESMReader& esm)
{
mIndex = 0;
esm.getHNT(mIndex, "INDX");
mInventory.load(esm);
}
}