summaryrefslogtreecommitdiffstats
path: root/src/game/client/entity
diff options
context:
space:
mode:
authoruntodesu <kirill@untode.su>2025-12-26 22:32:38 +0500
committeruntodesu <kirill@untode.su>2025-12-26 22:32:38 +0500
commit6bb4233d5b2a1688e63c947542e92ec5d5a857a6 (patch)
treea1321e1f515e5a89949596d188c541e93144f43e /src/game/client/entity
parent2103ce38edb160b2cc982b341535e1f147e66360 (diff)
downloadvoxelius-6bb4233d5b2a1688e63c947542e92ec5d5a857a6.tar.bz2
voxelius-6bb4233d5b2a1688e63c947542e92ec5d5a857a6.zip
move sound code to io
Diffstat (limited to 'src/game/client/entity')
-rw-r--r--src/game/client/entity/listener.cc2
-rw-r--r--src/game/client/entity/player_move.cc2
-rw-r--r--src/game/client/entity/sound_emitter.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/game/client/entity/listener.cc b/src/game/client/entity/listener.cc
index 991f014..af574ae 100644
--- a/src/game/client/entity/listener.cc
+++ b/src/game/client/entity/listener.cc
@@ -12,7 +12,7 @@
#include "client/entity/camera.hh"
-#include "client/sound/sound.hh"
+#include "client/io/sound.hh"
#include "client/const.hh"
#include "client/globals.hh"
diff --git a/src/game/client/entity/player_move.cc b/src/game/client/entity/player_move.cc
index edf9150..fe4e757 100644
--- a/src/game/client/entity/player_move.cc
+++ b/src/game/client/entity/player_move.cc
@@ -27,7 +27,7 @@
#include "client/io/gamepad.hh"
-#include "client/sound/sound.hh"
+#include "client/io/sound.hh"
#include "client/world/voxel_sounds.hh"
diff --git a/src/game/client/entity/sound_emitter.cc b/src/game/client/entity/sound_emitter.cc
index 79b5ab0..b0dbc6d 100644
--- a/src/game/client/entity/sound_emitter.cc
+++ b/src/game/client/entity/sound_emitter.cc
@@ -15,7 +15,7 @@
#include "client/entity/camera.hh"
-#include "client/sound/sound.hh"
+#include "client/io/sound.hh"
#include "client/globals.hh"