1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-28 18:45:33 +00:00
openmw-tes3mp/components/esm/loadbody.cpp
2013-09-16 12:32:35 +02:00

22 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);
}
}