mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-28 00:15:06 +00:00
15 lines
233 B
C++
15 lines
233 B
C++
#include "importques.hpp"
|
|
|
|
#include <components/esm3/esmreader.hpp>
|
|
|
|
namespace ESSImport
|
|
{
|
|
|
|
void QUES::load(ESM::ESMReader& esm)
|
|
{
|
|
while (esm.isNextSub("DATA"))
|
|
mInfo.push_back(esm.getHString());
|
|
}
|
|
|
|
}
|