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/input_handler.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/input_handler.h')
-rw-r--r-- | engines/titanic/input_handler.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/engines/titanic/input_handler.h b/engines/titanic/input_handler.h index 3fd93a2ac8..53b11f8cc4 100644 --- a/engines/titanic/input_handler.h +++ b/engines/titanic/input_handler.h @@ -23,13 +23,15 @@ #ifndef TITANIC_INPUT_HANDLER_H #define TITANIC_INPUT_HANDLER_H -#include "titanic/support/rect.h" -#include "titanic/input_translator.h" -#include "titanic/core/tree_item.h" +#include "titanic/support/rect.h" // Point namespace Titanic { +class CGameObject; class CGameManager; +class CInputTranslator; +class CMessage; +class CTreeItem; class CInputHandler { private: |