aboutsummaryrefslogtreecommitdiffstats
path: root/src/audio.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/audio.hpp')
-rw-r--r--src/audio.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/audio.hpp b/src/audio.hpp
index 97fff99..7a2076a 100644
--- a/src/audio.hpp
+++ b/src/audio.hpp
@@ -24,6 +24,7 @@
#include <entityx/entityx.h>
#include <components/Audio.hpp>
+#include <components/Position.hpp>
class AudioSystem : public entityx::System<AudioSystem>,
public entityx::Receiver<AudioSystem>
@@ -51,6 +52,8 @@ public:
void receive(const entityx::ComponentAddedEvent<Audio>& cae);
void receive(const entityx::ComponentRemovedEvent<Audio>& cae);
+
+ void playSound(const Position& pos, const Audio& audio);
};
#endif // SYSTEM_AUDIO_HPP_