mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
23 lines
432 B
C++
23 lines
432 B
C++
|
#include "importklst.hpp"
|
||
|
|
||
|
#include <components/esm/esmreader.hpp>
|
||
|
|
||
|
namespace ESSImport
|
||
|
{
|
||
|
|
||
|
void KLST::load(ESM::ESMReader &esm)
|
||
|
{
|
||
|
while (esm.isNextSub("KNAM"))
|
||
|
{
|
||
|
std::string refId = esm.getHString();
|
||
|
int count;
|
||
|
esm.getHNT(count, "CNAM");
|
||
|
mKillCounter[refId] = count;
|
||
|
}
|
||
|
|
||
|
mWerewolfKills = 0;
|
||
|
esm.getHNOT(mWerewolfKills, "INTV");
|
||
|
}
|
||
|
|
||
|
}
|