mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-28 00:15:06 +00:00
17 lines
235 B
C++
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);
|
|
}
|
|
|
|
}
|