mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-24 17:23:50 +00:00
20 lines
360 B
C++
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);
|
|
}
|
|
|
|
}
|