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.
20 lines
401 B
C++
20 lines
401 B
C++
#include "importnpcc.hpp"
|
|
|
|
#include <components/esm/esmreader.hpp>
|
|
|
|
namespace ESSImport
|
|
{
|
|
|
|
void NPCC::load(ESM::ESMReader &esm)
|
|
{
|
|
esm.getHNT(mNPDT, "NPDT");
|
|
|
|
while (esm.isNextSub("AI_W") || esm.isNextSub("AI_E") || esm.isNextSub("AI_T") || esm.isNextSub("AI_F")
|
|
|| esm.isNextSub("AI_A"))
|
|
mAiPackages.add(esm);
|
|
|
|
mInventory.load(esm);
|
|
}
|
|
|
|
}
|