summaryrefslogtreecommitdiffstats
path: root/src/game/client/world/voxel_sounds.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/client/world/voxel_sounds.hh')
-rw-r--r--src/game/client/world/voxel_sounds.hh19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/game/client/world/voxel_sounds.hh b/src/game/client/world/voxel_sounds.hh
new file mode 100644
index 0000000..dc02cbd
--- /dev/null
+++ b/src/game/client/world/voxel_sounds.hh
@@ -0,0 +1,19 @@
+#pragma once
+
+#include "core/resource/resource.hh"
+
+#include "shared/world/voxel.hh"
+
+struct SoundEffect;
+
+namespace world::voxel_sounds
+{
+void init(void);
+void shutdown(void);
+} // namespace world::voxel_sounds
+
+namespace world::voxel_sounds
+{
+resource_ptr<SoundEffect> get_footsteps(VoxelMaterial material);
+resource_ptr<SoundEffect> get_placebreak(VoxelMaterial material);
+} // namespace world::voxel_sounds