18 lines
250 B
C++
18 lines
250 B
C++
#ifndef Components_SoundEmitter_h__
|
|
#define Components_SoundEmitter_h__
|
|
|
|
#include <string>
|
|
|
|
#include "Component.h"
|
|
|
|
namespace Components
|
|
{
|
|
|
|
struct SoundEmitter : Component
|
|
{
|
|
float Volume;
|
|
float MaxRange;
|
|
};
|
|
|
|
}
|
|
#endif // !Components_SoundEmitter_h__
|