mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 18:19:55 +00:00
18 lines
272 B
C++
18 lines
272 B
C++
#include "importproj.h"
|
|
|
|
#include <components/esm/esmreader.hpp>
|
|
|
|
namespace ESSImport
|
|
{
|
|
|
|
void ESSImport::PROJ::load(ESM::ESMReader& esm)
|
|
{
|
|
while (esm.isNextSub("PNAM"))
|
|
{
|
|
PNAM pnam;
|
|
esm.getHT(pnam);
|
|
mProjectiles.push_back(pnam);
|
|
}
|
|
}
|
|
|
|
}
|