Files
escape-the-dawn/Escape-the-Dawn/Components/SoundEmitter.h
T
2014-03-13 16:28:39 +01:00

22 lines
324 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__