aboutsummaryrefslogtreecommitdiff
path: root/engines/adl/console.cpp
diff options
context:
space:
mode:
authorWalter van Niftrik2016-03-26 23:26:22 +0100
committerWalter van Niftrik2016-06-06 20:35:49 +0200
commit367cb511d153c6d4733a65b153506b7f0e8b01b3 (patch)
tree0b5a4672b1947fb1344bc3f197a49778cb5c14c2 /engines/adl/console.cpp
parent760d5ac733ce41a5d4a3f861234850dcc4e96c38 (diff)
downloadscummvm-rg350-367cb511d153c6d4733a65b153506b7f0e8b01b3.tar.gz
scummvm-rg350-367cb511d153c6d4733a65b153506b7f0e8b01b3.tar.bz2
scummvm-rg350-367cb511d153c6d4733a65b153506b7f0e8b01b3.zip
ADL: Add Console
Diffstat (limited to 'engines/adl/console.cpp')
-rw-r--r--engines/adl/console.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/engines/adl/console.cpp b/engines/adl/console.cpp
new file mode 100644
index 0000000000..e051716a6c
--- /dev/null
+++ b/engines/adl/console.cpp
@@ -0,0 +1,31 @@
+/* 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 "adl/console.h"
+
+namespace Adl {
+
+Console::Console(AdlEngine *engine) : GUI::Debugger() {
+ _engine = engine;
+}
+
+} // End of namespace Adl