diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2019-10-01 20:50:28 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2019-10-01 20:50:28 -0400 |
commit | af39f2e08b0503db723ae707a5c7278d8c85f812 (patch) | |
tree | ad6ab6e51e1a7e30d72a28e2bac51b210fd22f6c /src/audio.hpp | |
parent | bebc6e955114a0907c43df9a9c00f22b1f743446 (diff) |
Audio component loading, getting ready to play
Diffstat (limited to 'src/audio.hpp')
-rw-r--r-- | src/audio.hpp | 3 |
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_ |