diff options
author | Paul Gilbert | 2017-08-25 07:23:35 -0400 |
---|---|---|
committer | GitHub | 2017-08-25 07:23:35 -0400 |
commit | 9b07378c244004b7fe6800f984aebd3716f6bb62 (patch) | |
tree | 913ef9b05a4e852c75c3c19b06fbebbaaa414898 /engines/titanic/debugger.h | |
parent | bb3fb4a963fd2e3abe6ed7c3eea60523ebd35093 (diff) | |
parent | d01354ab0d33bb5a7eb113027eaf599e1339804a (diff) | |
download | scummvm-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.h | 19 |
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: /** |