You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
457 B
C++
21 lines
457 B
C++
#include "importnpcc.hpp"
|
|
|
|
#include <components/esm/esmreader.hpp>
|
|
|
|
namespace ESSImport
|
|
{
|
|
|
|
void NPCC::load(ESM::ESMReader &esm)
|
|
{
|
|
esm.getHNT(mNPDT, "NPDT");
|
|
|
|
// FIXME: use AiPackageList, need to fix getSubName()
|
|
while (esm.isNextSub("AI_W") || esm.isNextSub("AI_E") || esm.isNextSub("AI_T") || esm.isNextSub("AI_F")
|
|
|| esm.isNextSub("AI_A"))
|
|
esm.skipHSub();
|
|
|
|
mInventory.load(esm);
|
|
}
|
|
|
|
}
|