forked from mirror/openmw-tes3mp
14 lines
232 B
C++
14 lines
232 B
C++
#include "importques.hpp"
|
|
|
|
#include <components/esm/esmreader.hpp>
|
|
|
|
namespace ESSImport
|
|
{
|
|
|
|
void QUES::load(ESM::ESMReader &esm)
|
|
{
|
|
while (esm.isNextSub("DATA"))
|
|
mInfo.push_back(esm.getHString());
|
|
}
|
|
|
|
}
|