summaryrefslogtreecommitdiff
path: root/src/client.cpp
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2012-03-23 12:05:17 +0200
committerPerttu Ahola <celeron55@gmail.com>2012-03-24 04:24:23 +0200
commitc301e3c82af4ad384f4baaa8244b3a5f26da5213 (patch)
treea23bfb49606347f678e81eb7f5fe1eef985d9d02 /src/client.cpp
parent9dd78a8a451a7200bfb68b06e034ffb88e32bcd3 (diff)
downloadminetest-c301e3c82af4ad384f4baaa8244b3a5f26da5213.tar.gz
minetest-c301e3c82af4ad384f4baaa8244b3a5f26da5213.tar.bz2
minetest-c301e3c82af4ad384f4baaa8244b3a5f26da5213.zip
celeron55's sound system initial framework
Diffstat (limited to 'src/client.cpp')
-rw-r--r--src/client.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/client.cpp b/src/client.cpp
index f446200a3..220fd04dd 100644
--- a/src/client.cpp
+++ b/src/client.cpp
@@ -38,6 +38,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "sha1.h"
#include "base64.h"
#include "clientmap.h"
+#include "sound.h"
static std::string getTextureCacheDir()
{
@@ -2323,4 +2324,8 @@ u16 Client::allocateUnknownNodeId(const std::string &name)
assert(0);
return CONTENT_IGNORE;
}
+ISoundManager* Client::getSoundManager()
+{
+ return &dummySoundManager;
+}