1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-06 00:55:50 +00:00
OpenMW/components/esm/loadbody.cpp
2013-09-16 12:32:35 +02:00

23 lines
406 B
C++

#include "loadbody.hpp"
#include "esmreader.hpp"
#include "esmwriter.hpp"
namespace ESM
{
void BodyPart::load(ESMReader &esm)
{
mModel = esm.getHNString("MODL");
mRace = esm.getHNString("FNAM");
esm.getHNT(mData, "BYDT", 4);
}
void BodyPart::save(ESMWriter &esm) const
{
esm.writeHNCString("MODL", mModel);
esm.writeHNCString("FNAM", mRace);
esm.writeHNT("BYDT", mData, 4);
}
}