X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fui%2FInteractiveManipulator.hpp;fp=src%2Fui%2FInteractiveManipulator.hpp;h=00d3285f33251219c48f5fbed29d044752be6667;hb=07b8335e7bfd631e0878e183c87238812d632c56;hp=6975d9eb5599e87c9519ad299a713ced981702fb;hpb=9c5308ba4108bd842af6d9d2e893ea575a7e6ca8;p=blank.git diff --git a/src/ui/InteractiveManipulator.hpp b/src/ui/InteractiveManipulator.hpp index 6975d9e..00d3285 100644 --- a/src/ui/InteractiveManipulator.hpp +++ b/src/ui/InteractiveManipulator.hpp @@ -10,21 +10,20 @@ namespace blank { class Audio; class Entity; -class Environment; +class SoundBank; class InteractiveManipulator : public WorldManipulator { public: - explicit InteractiveManipulator(Environment &, Entity &); + explicit InteractiveManipulator(Audio &, const SoundBank &, Entity &); void SetBlock(Chunk &, int, const Block &) override; private: Entity &player; Audio &audio; - Sound place_sound; - Sound remove_sound; + const SoundBank &sounds; };