mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 15:39:02 +00:00
21 lines
267 B
C++
21 lines
267 B
C++
|
#include "importscpt.hpp"
|
||
|
|
||
|
#include <components/esm/esmreader.hpp>
|
||
|
|
||
|
|
||
|
|
||
|
namespace ESSImport
|
||
|
{
|
||
|
|
||
|
void SCPT::load(ESM::ESMReader &esm)
|
||
|
{
|
||
|
esm.getHNT(mSCHD, "SCHD");
|
||
|
|
||
|
mSCRI.load(esm);
|
||
|
|
||
|
mRNAM = -1;
|
||
|
esm.getHNOT(mRNAM, "RNAM");
|
||
|
}
|
||
|
|
||
|
}
|