aboutsummaryrefslogtreecommitdiff
path: root/engines/cryo/debugger.h
diff options
context:
space:
mode:
authorStrangerke2017-01-24 23:52:57 +0100
committerEugene Sandulenko2017-01-25 22:42:27 +0100
commita8a142cfe4521bae210cc4a7c7b4891030d1de39 (patch)
tree73e41c576aacbb56a1f5e1a9709fd606664f9a93 /engines/cryo/debugger.h
parent0e34cec17a6fbd8944c485929b6746e18ce56913 (diff)
downloadscummvm-rg350-a8a142cfe4521bae210cc4a7c7b4891030d1de39.tar.gz
scummvm-rg350-a8a142cfe4521bae210cc4a7c7b4891030d1de39.tar.bz2
scummvm-rg350-a8a142cfe4521bae210cc4a7c7b4891030d1de39.zip
CRYO: Introduce debugger, remove console initialisation
Diffstat (limited to 'engines/cryo/debugger.h')
-rw-r--r--engines/cryo/debugger.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/engines/cryo/debugger.h b/engines/cryo/debugger.h
new file mode 100644
index 0000000000..bb3ad808ff
--- /dev/null
+++ b/engines/cryo/debugger.h
@@ -0,0 +1,47 @@
+/* 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 CRYO_DEBUGGER_H
+#define CRYO_DEBUGGER_H
+
+#include "common/scummsys.h"
+#include "gui/debugger.h"
+
+namespace Cryo {
+
+class CryoEngine;
+
+class Debugger : public GUI::Debugger {
+private:
+ CryoEngine *_vm;
+
+public:
+ Debugger(CryoEngine *vm);
+ virtual ~Debugger() {}
+
+protected:
+ bool Cmd_ShowHotspots(int argc, const char **argv);
+};
+
+} // End of namespace Cryo
+
+#endif