mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-08 09:37:53 +00:00
15 lines
235 B
C++
15 lines
235 B
C++
|
#include "importinfo.hpp"
|
||
|
|
||
|
#include <components/esm/esmreader.hpp>
|
||
|
|
||
|
namespace ESSImport
|
||
|
{
|
||
|
|
||
|
void INFO::load(ESM::ESMReader &esm)
|
||
|
{
|
||
|
mInfo = esm.getHNString("INAM");
|
||
|
mActorRefId = esm.getHNString("ACDT");
|
||
|
}
|
||
|
|
||
|
}
|