You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include "loadsoun.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
|
|
void Sound::load(ESMReader &esm)
|
|
{
|
|
sound = esm.getHNString("FNAM");
|
|
esm.getHNT(data, "DATA", 3);
|
|
/*
|
|
cout << "vol=" << (int)data.volume
|
|
<< " min=" << (int)data.minRange
|
|
<< " max=" << (int)data.maxRange
|
|
<< endl;
|
|
*/
|
|
}
|
|
|
|
}
|