1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-23 16:53:53 +00:00
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 18:26:05 +00:00
void INFO::load(ESM::ESMReader& esm)
{
mInfo = esm.getHNString("INAM");
mActorRefId = esm.getHNString("ACDT");
}
}