Files
2014-03-14 04:23:49 +01:00

22 lines
322 B
C++

#ifndef Components_SoundEmitter_h__
#define Components_SoundEmitter_h__
#include <string>
#include "Component.h"
namespace Components
{
struct SoundEmitter : Component
{
float Gain;
float MaxDistance;
float ReferenceDistance;
float Pitch;
bool Loop;
std::string Path;
};
}
#endif // !Components_SoundEmitter_h__