aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/core/project_item.cpp
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/core/project_item.cpp
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/core/project_item.cpp')
-rw-r--r--engines/titanic/core/project_item.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/engines/titanic/core/project_item.cpp b/engines/titanic/core/project_item.cpp
index 13bcdfc4b4..0fa5d44511 100644
--- a/engines/titanic/core/project_item.cpp
+++ b/engines/titanic/core/project_item.cpp
@@ -20,17 +20,18 @@
*
*/
-#include "common/file.h"
-#include "common/savefile.h"
-#include "graphics/scaler.h"
-#include "graphics/thumbnail.h"
-#include "titanic/game_manager.h"
-#include "titanic/titanic.h"
#include "titanic/core/dont_save_file_item.h"
#include "titanic/core/node_item.h"
#include "titanic/core/project_item.h"
#include "titanic/core/view_item.h"
+#include "titanic/events.h"
+#include "titanic/game_manager.h"
#include "titanic/pet_control/pet_control.h"
+#include "titanic/titanic.h"
+#include "common/file.h"
+#include "common/savefile.h"
+#include "graphics/scaler.h"
+#include "graphics/thumbnail.h"
namespace Titanic {