You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmw/components/esm3/quickkeys.cpp

31 lines
563 B
C++

#include "quickkeys.hpp"
#include "esmreader.hpp"
#include "esmwriter.hpp"
namespace ESM
{
void QuickKeys::load(ESMReader& esm)
{
while (esm.isNextSub("TYPE"))
{
QuickKey key;
esm.getHT(key.mType);
key.mId = esm.getHNRefId("ID__");
mKeys.push_back(key);
}
}
void QuickKeys::save(ESMWriter& esm) const
{
for (const QuickKey& key : mKeys)
{
esm.writeHNT("TYPE", key.mType);
esm.writeHNRefId("ID__", key.mId);
}
}
}