From c76f0c6c022766a2db7e96e3e68260d3b9bd7a25 Mon Sep 17 00:00:00 2001 From: David Turner Date: Mon, 8 Nov 2010 12:17:19 +0000 Subject: 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 --- engines/made/console.cpp | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 engines/made/console.cpp (limited to 'engines/made/console.cpp') 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 -- cgit v1.2.3