mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-15 22:49:48 +00:00
24 lines
454 B
C++
24 lines
454 B
C++
#include "queststate.hpp"
|
|
|
|
#include "esmreader.hpp"
|
|
#include "esmwriter.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
|
|
void QuestState::load(ESMReader& esm)
|
|
{
|
|
mTopic = esm.getHNString("YETO");
|
|
esm.getHNOT(mState, "QSTA");
|
|
esm.getHNOT(mFinished, "QFIN");
|
|
}
|
|
|
|
void QuestState::save(ESMWriter& esm) const
|
|
{
|
|
esm.writeHNString("YETO", mTopic);
|
|
esm.writeHNT("QSTA", mState);
|
|
esm.writeHNT("QFIN", mFinished);
|
|
}
|
|
|
|
}
|