mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 21:49:56 +00:00
1e5768170f
Removed obsolete *.cpp files.
14 lines
198 B
C++
14 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");
|
|
}
|
|
|
|
}
|