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.
19 lines
297 B
C++
19 lines
297 B
C++
14 years ago
|
#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;
|
||
|
*/
|
||
|
}
|
||
|
|
||
|
}
|