1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-24 17:23:50 +00:00
openmw-tes3mp/components/esm/loadsndg.cpp
2012-04-06 21:04:30 +02:00

20 lines
360 B
C++

#include "loadsndg.hpp"
namespace ESM
{
void SoundGenerator::load(ESMReader &esm)
{
esm.getHNT(type, "DATA", 4);
creature = esm.getHNOString("CNAM");
sound = esm.getHNOString("SNAM");
}
void SoundGenerator::save(ESMWriter &esm)
{
esm.writeHNT("DATA", type, 4);
esm.writeHNOString("CNAM", creature);
esm.writeHNOString("SNAM", sound);
}
}