aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/sound.cpp
diff options
context:
space:
mode:
authorNipun Garg2019-07-03 08:21:07 +0530
committerEugene Sandulenko2019-09-03 17:17:09 +0200
commit5d874c540e4f52ff5b32f8679b98ea57d7c1611c (patch)
tree1b0b36257534799c368f85f6c3d86f1abfab25d3 /engines/hdb/sound.cpp
parentb8b47c09fd7862e3f7b212ef8a2686cab5320858 (diff)
downloadscummvm-rg350-5d874c540e4f52ff5b32f8679b98ea57d7c1611c.tar.gz
scummvm-rg350-5d874c540e4f52ff5b32f8679b98ea57d7c1611c.tar.bz2
scummvm-rg350-5d874c540e4f52ff5b32f8679b98ea57d7c1611c.zip
HDB: Add and init Sound subsystem
Diffstat (limited to 'engines/hdb/sound.cpp')
-rw-r--r--engines/hdb/sound.cpp41
1 files changed, 41 insertions, 0 deletions
diff --git a/engines/hdb/sound.cpp b/engines/hdb/sound.cpp
new file mode 100644
index 0000000000..12f64ad2c1
--- /dev/null
+++ b/engines/hdb/sound.cpp
@@ -0,0 +1,41 @@
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ */
+
+#include "hdb/hdb.h"
+
+namespace HDB {
+
+bool Sound::init() {
+ return true;
+}
+
+bool Sound::playSound(int index) {
+ warning("STUB: Play Sound");
+ return true;
+}
+
+bool Sound::playVoice(int index, int actor) {
+ warning("STUB: Play Voice");
+ return true;
+}
+
+} // End of Namespace