openmw/apps/essimporter/importinfo.cpp

15 lines
236 B
C++
Raw Normal View History

#include "importinfo.hpp"
#include <components/esm3/esmreader.hpp>
namespace ESSImport
{
2022-09-22 21:26:05 +03:00
void INFO::load(ESM::ESMReader& esm)
{
mInfo = esm.getHNString("INAM");
mActorRefId = esm.getHNString("ACDT");
}
}