aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/debugger.h
diff options
context:
space:
mode:
authorPaul Gilbert2012-05-22 00:29:27 +1000
committerPaul Gilbert2012-05-22 00:29:27 +1000
commit6856fa2447195e8a65f6d5c7efa73543668d85b0 (patch)
tree1c59c37811cb65c98d8c3a8053f7dbae1610e5eb /engines/tony/debugger.h
parent3f00f51ef3239b02e01fed80c9205835b2d654e9 (diff)
downloadscummvm-rg350-6856fa2447195e8a65f6d5c7efa73543668d85b0.tar.gz
scummvm-rg350-6856fa2447195e8a65f6d5c7efa73543668d85b0.tar.bz2
scummvm-rg350-6856fa2447195e8a65f6d5c7efa73543668d85b0.zip
TONY: Implemented ScummVM debugger, with an initial 'scene' command
Diffstat (limited to 'engines/tony/debugger.h')
-rw-r--r--engines/tony/debugger.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/engines/tony/debugger.h b/engines/tony/debugger.h
new file mode 100644
index 0000000000..c5ed5e417e
--- /dev/null
+++ b/engines/tony/debugger.h
@@ -0,0 +1,42 @@
+/* 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.
+ *
+ */
+
+#ifndef TONY_DEBUGGER_H
+#define TONY_DEBUGGER_H
+
+#include "common/scummsys.h"
+#include "gui/debugger.h"
+
+namespace Tony {
+
+class Debugger : public GUI::Debugger {
+public:
+ Debugger();
+ virtual ~Debugger() {}
+
+protected:
+ bool Cmd_Scene(int argc, const char **argv);
+};
+
+} // End of namespace Tony
+
+#endif