1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-04 02:41:19 +00:00
OpenMW/apps/essimporter/importjour.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
189 B
C++
Raw Normal View History

#include "importjour.hpp"
#include <components/esm3/esmreader.hpp>
namespace ESSImport
{
void JOUR::load(ESM::ESMReader& esm)
{
mText = esm.getHNString("NAME");
}
}