mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 19:19:55 +00:00
20 lines
267 B
C++
20 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");
|
|
}
|
|
|
|
}
|