mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-08 09:37:53 +00:00
15 lines
198 B
C++
15 lines
198 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");
|
||
|
}
|
||
|
|
||
|
}
|