aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/menu.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2019-07-03 15:23:05 +0200
committerEugene Sandulenko2019-09-03 17:17:09 +0200
commit34a3e1685bef4b57f10d4acdbf568a217315fa32 (patch)
tree0381182d3ecd7e008cd871cd63cd0820ced3b2ab /engines/hdb/menu.cpp
parentaf43070e150452c7876a6bc949c7ad36ae761508 (diff)
downloadscummvm-rg350-34a3e1685bef4b57f10d4acdbf568a217315fa32.tar.gz
scummvm-rg350-34a3e1685bef4b57f10d4acdbf568a217315fa32.tar.bz2
scummvm-rg350-34a3e1685bef4b57f10d4acdbf568a217315fa32.zip
HDB: Added stub for Menu class
Diffstat (limited to 'engines/hdb/menu.cpp')
-rw-r--r--engines/hdb/menu.cpp37
1 files changed, 37 insertions, 0 deletions
diff --git a/engines/hdb/menu.cpp b/engines/hdb/menu.cpp
new file mode 100644
index 0000000000..a707e847ea
--- /dev/null
+++ b/engines/hdb/menu.cpp
@@ -0,0 +1,37 @@
+/* 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"
+#include "hdb/menu.h"
+
+namespace HDB {
+
+bool Menu::init() {
+ warning("STUB: Menu::init()");
+ return true;
+}
+
+void Menu::fillSavegameSlots() {
+ warning("STUB: PMenu::fillSavegameSlots()");
+}
+
+} // End of Namespace