X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fui%2FInteractiveManipulator.hpp;h=00d3285f33251219c48f5fbed29d044752be6667;hb=ed3bdc028edc0ecb5835d1c0bf18dbc59b342daf;hp=6975d9eb5599e87c9519ad299a713ced981702fb;hpb=b066e776622f96e906600a0c4a08de392bd03676;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; };