1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-29 09:32:45 +00:00
OpenMW/components/esm/loadsoun.hpp

26 lines
321 B
C++

#ifndef OPENMW_ESM_SOUN_H
#define OPENMW_ESM_SOUN_H
#include <string>
#include "record.hpp"
namespace ESM
{
struct SOUNstruct
{
unsigned char mVolume, mMinRange, mMaxRange;
};
struct Sound
{
SOUNstruct mData;
std::string mSound;
void load(ESMReader &esm);
void save(ESMWriter &esm);
};
}
#endif