Files
escape-the-dawn/Escape-the-Dawn/Components/SoundEmitter.h
T
Adam 5ae8a15bcf Merge branch 'master' of github.com:sippeangelo/Escape-the-Dawn
Conflicts:
	Escape-the-Dawn/GameWorld.cpp
	Escape-the-Dawn/GameWorld.h
2014-03-13 01:45:27 +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__