aboutsummaryrefslogtreecommitdiff
path: root/engines/illusions/bbdou/bbdou_specialcode.cpp
diff options
context:
space:
mode:
authorjohndoe1232014-03-24 11:21:44 +0100
committerEugene Sandulenko2018-07-20 06:43:33 +0000
commit28cb39eb2b48d8c6e80e35ef6e26e02cc209fc0f (patch)
tree4c41f02644815113d5f15de74b7964c28d29d49b /engines/illusions/bbdou/bbdou_specialcode.cpp
parenta6a4a3dc1cb346afc1f7b0491158d8b00ac063c5 (diff)
downloadscummvm-rg350-28cb39eb2b48d8c6e80e35ef6e26e02cc209fc0f.tar.gz
scummvm-rg350-28cb39eb2b48d8c6e80e35ef6e26e02cc209fc0f.tar.bz2
scummvm-rg350-28cb39eb2b48d8c6e80e35ef6e26e02cc209fc0f.zip
ILLUSIONS: Start with BBDOU special code
Diffstat (limited to 'engines/illusions/bbdou/bbdou_specialcode.cpp')
-rw-r--r--engines/illusions/bbdou/bbdou_specialcode.cpp45
1 files changed, 45 insertions, 0 deletions
diff --git a/engines/illusions/bbdou/bbdou_specialcode.cpp b/engines/illusions/bbdou/bbdou_specialcode.cpp
new file mode 100644
index 0000000000..028fdb54a8
--- /dev/null
+++ b/engines/illusions/bbdou/bbdou_specialcode.cpp
@@ -0,0 +1,45 @@
+/* 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 "illusions/illusions.h"
+#include "illusions/bbdou/bbdou_specialcode.h"
+#include "illusions/bbdou/bbdou_cursor.h"
+#include "illusions/scriptopcodes.h"
+
+namespace Illusions {
+
+// BbdouSpecialCode
+
+BbdouSpecialCode::BbdouSpecialCode(IllusionsEngine *vm)
+ : SpecialCode(vm) {
+}
+
+BbdouSpecialCode::~BbdouSpecialCode() {
+}
+
+void BbdouSpecialCode::init() {
+}
+
+void BbdouSpecialCode::run(uint32 specialCodeId, OpCall &opCall) {
+}
+
+} // End of namespace Illusions