aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/debugger.h
diff options
context:
space:
mode:
authorPaul Gilbert2017-08-25 07:23:35 -0400
committerGitHub2017-08-25 07:23:35 -0400
commit9b07378c244004b7fe6800f984aebd3716f6bb62 (patch)
tree913ef9b05a4e852c75c3c19b06fbebbaaa414898 /engines/titanic/debugger.h
parentbb3fb4a963fd2e3abe6ed7c3eea60523ebd35093 (diff)
parentd01354ab0d33bb5a7eb113027eaf599e1339804a (diff)
downloadscummvm-rg350-9b07378c244004b7fe6800f984aebd3716f6bb62.tar.gz
scummvm-rg350-9b07378c244004b7fe6800f984aebd3716f6bb62.tar.bz2
scummvm-rg350-9b07378c244004b7fe6800f984aebd3716f6bb62.zip
Merge pull request #999 from dafioram/header_reduce
TITANIC: Reduce header includes
Diffstat (limited to 'engines/titanic/debugger.h')
-rw-r--r--engines/titanic/debugger.h19
1 files changed, 15 insertions, 4 deletions
diff --git a/engines/titanic/debugger.h b/engines/titanic/debugger.h
index 36da1d33f4..3e53feec2a 100644
--- a/engines/titanic/debugger.h
+++ b/engines/titanic/debugger.h
@@ -23,16 +23,27 @@
#ifndef TITANIC_DEBUGGER_H
#define TITANIC_DEBUGGER_H
-#include "common/scummsys.h"
#include "gui/debugger.h"
-#include "titanic/core/room_item.h"
-#include "titanic/core/node_item.h"
-#include "titanic/core/view_item.h"
+#include "common/scummsys.h"
namespace Titanic {
+#define DEBUG_BASIC 1
+#define DEBUG_INTERMEDIATE 2
+#define DEBUG_DETAILED 3
+
+class CNodeItem;
+class CRoomItem;
+class CViewItem;
class TitanicEngine;
+enum TitanicDebugChannels {
+ kDebugCore = 1 << 0,
+ kDebugScripts = 1 << 1,
+ kDebugGraphics = 1 << 2,
+ kDebugStarfield = 1 << 3
+};
+
class Debugger : public GUI::Debugger {
private:
/**