aboutsummaryrefslogtreecommitdiff
path: root/engines/pegasus/console.cpp
diff options
context:
space:
mode:
authorMatthew Hoops2011-05-12 16:17:12 -0400
committerMatthew Hoops2011-05-12 16:17:12 -0400
commit50e43a56e76ac0fa82560d0e5e42f5dd330313f1 (patch)
tree9eeae220f17548d9905ec44b3bd7510729180b85 /engines/pegasus/console.cpp
parent85b2a0574c68b2d4b211b5739f251708b2cd5873 (diff)
downloadscummvm-rg350-50e43a56e76ac0fa82560d0e5e42f5dd330313f1.tar.gz
scummvm-rg350-50e43a56e76ac0fa82560d0e5e42f5dd330313f1.tar.bz2
scummvm-rg350-50e43a56e76ac0fa82560d0e5e42f5dd330313f1.zip
PEGASUS: Add a stub debugger
Diffstat (limited to 'engines/pegasus/console.cpp')
-rw-r--r--engines/pegasus/console.cpp38
1 files changed, 38 insertions, 0 deletions
diff --git a/engines/pegasus/console.cpp b/engines/pegasus/console.cpp
new file mode 100644
index 0000000000..d6a8c1e2ec
--- /dev/null
+++ b/engines/pegasus/console.cpp
@@ -0,0 +1,38 @@
+/* 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 "pegasus/console.h"
+#include "pegasus/pegasus.h"
+
+namespace Pegasus {
+
+PegasusConsole::PegasusConsole(PegasusEngine *vm) : GUI::Debugger(), _vm(vm) {
+ // TODO! :P
+}
+
+PegasusConsole::~PegasusConsole() {
+}
+
+} // End of namespace Pegasus