mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 03:19:44 +00:00
19 lines
309 B
C++
19 lines
309 B
C++
#include "importproj.h"
|
|
|
|
#include <components/esm3/esmreader.hpp>
|
|
|
|
namespace ESSImport
|
|
{
|
|
|
|
void ESSImport::PROJ::load(ESM::ESMReader& esm)
|
|
{
|
|
while (esm.isNextSub("PNAM"))
|
|
{
|
|
PNAM pnam;
|
|
esm.getHT(pnam);
|
|
mProjectiles.push_back(pnam);
|
|
}
|
|
}
|
|
|
|
}
|