mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-03 17:37:18 +00:00
17 lines
234 B
C++
17 lines
234 B
C++
|
#include "importcntc.hpp"
|
||
|
|
||
|
#include <components/esm/esmreader.hpp>
|
||
|
|
||
|
namespace ESSImport
|
||
|
{
|
||
|
|
||
|
void CNTC::load(ESM::ESMReader &esm)
|
||
|
{
|
||
|
mIndex = 0;
|
||
|
esm.getHNT(mIndex, "INDX");
|
||
|
|
||
|
mInventory.load(esm);
|
||
|
}
|
||
|
|
||
|
}
|