mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 12:54:00 +00:00
6d261d38dd
To be later changed with another implementation.
24 lines
452 B
C++
24 lines
452 B
C++
#include "queststate.hpp"
|
|
|
|
#include "esmreader.hpp"
|
|
#include "esmwriter.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
|
|
void QuestState::load(ESMReader& esm)
|
|
{
|
|
mTopic = esm.getHNRefId("YETO");
|
|
esm.getHNOT(mState, "QSTA");
|
|
esm.getHNOT(mFinished, "QFIN");
|
|
}
|
|
|
|
void QuestState::save(ESMWriter& esm) const
|
|
{
|
|
esm.writeHNRefId("YETO", mTopic);
|
|
esm.writeHNT("QSTA", mState);
|
|
esm.writeHNT("QFIN", mFinished);
|
|
}
|
|
|
|
}
|