aboutsummaryrefslogtreecommitdiff
path: root/engines/made/console.cpp
diff options
context:
space:
mode:
authorDavid Turner2010-11-08 12:17:19 +0000
committerDavid Turner2010-11-08 12:17:19 +0000
commitc76f0c6c022766a2db7e96e3e68260d3b9bd7a25 (patch)
tree53274d387959460cd089424c8be63c2328f29970 /engines/made/console.cpp
parent416025cda90f23ea5b94c88dcea0c202df279223 (diff)
downloadscummvm-rg350-c76f0c6c022766a2db7e96e3e68260d3b9bd7a25.tar.gz
scummvm-rg350-c76f0c6c022766a2db7e96e3e68260d3b9bd7a25.tar.bz2
scummvm-rg350-c76f0c6c022766a2db7e96e3e68260d3b9bd7a25.zip
MADE: Added basic debugging console to engine
MADE does not currently use Debug Channels, but this does provide a base for adding them along with any other debugging commands. svn-id: r54139
Diffstat (limited to 'engines/made/console.cpp')
-rw-r--r--engines/made/console.cpp43
1 files changed, 43 insertions, 0 deletions
diff --git a/engines/made/console.cpp b/engines/made/console.cpp
new file mode 100644
index 0000000000..ee85c465e8
--- /dev/null
+++ b/engines/made/console.cpp
@@ -0,0 +1,43 @@
+/* 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.
+ *
+ * $URL$
+ * $Id$
+ *
+ */
+
+#include "made/console.h"
+#include "made/made.h"
+
+namespace Made {
+
+MadeConsole::MadeConsole(MadeEngine *vm) : GUI::Debugger(), _vm(vm) {
+}
+
+MadeConsole::~MadeConsole() {
+}
+
+void MadeConsole::preEnter() {
+}
+
+void MadeConsole::postEnter() {
+}
+
+} // End of namespace Made