1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-02 12:45:35 +00:00
openmw/apps/essimporter/importnpcc.cpp

19 lines
278 B
C++
Raw Normal View History

#include "importnpcc.hpp"
#include <components/esm/esmreader.hpp>
namespace ESSImport
{
void NPCC::load(ESM::ESMReader &esm)
{
esm.getHNT(mNPDT, "NPDT");
// container:
// XIDX
// XHLT - condition
// WIDX - equipping?
}
}