diff options
author | Paul Gilbert | 2016-04-03 16:16:35 -0400 |
---|---|---|
committer | Paul Gilbert | 2016-04-03 16:16:35 -0400 |
commit | 1efbed540948edcbf3ac2c72c0984def044274cf (patch) | |
tree | 63b4543753951b55c756a9b81cd5df5ab2718943 /engines/titanic/pet_control | |
parent | 432153274385295a9a4eb01e56bfcc72cc5f202e (diff) | |
download | scummvm-rg350-1efbed540948edcbf3ac2c72c0984def044274cf.tar.gz scummvm-rg350-1efbed540948edcbf3ac2c72c0984def044274cf.tar.bz2 scummvm-rg350-1efbed540948edcbf3ac2c72c0984def044274cf.zip |
TITANIC: Move most of the root classes into new support/ folder
Diffstat (limited to 'engines/titanic/pet_control')
-rw-r--r-- | engines/titanic/pet_control/pet_control_sub10.h | 2 | ||||
-rw-r--r-- | engines/titanic/pet_control/pet_control_sub12.h | 4 | ||||
-rw-r--r-- | engines/titanic/pet_control/pet_element.h | 4 | ||||
-rw-r--r-- | engines/titanic/pet_control/pet_inventory.h | 2 | ||||
-rw-r--r-- | engines/titanic/pet_control/pet_section.h | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/engines/titanic/pet_control/pet_control_sub10.h b/engines/titanic/pet_control/pet_control_sub10.h index aabb59638e..ef8d02f95c 100644 --- a/engines/titanic/pet_control/pet_control_sub10.h +++ b/engines/titanic/pet_control/pet_control_sub10.h @@ -26,7 +26,7 @@ #include "titanic/core/list.h" #include "titanic/pet_control/pet_control_sub10.h" #include "titanic/pet_control/pet_control_list_item.h" -#include "titanic/screen_manager.h" +#include "titanic/support/screen_manager.h" namespace Titanic { diff --git a/engines/titanic/pet_control/pet_control_sub12.h b/engines/titanic/pet_control/pet_control_sub12.h index 88faf3d074..70010f0bd9 100644 --- a/engines/titanic/pet_control/pet_control_sub12.h +++ b/engines/titanic/pet_control/pet_control_sub12.h @@ -23,8 +23,8 @@ #ifndef TITANIC_PET_CONTROL_SUB12_H #define TITANIC_PET_CONTROL_SUB12_H -#include "titanic/simple_file.h" -#include "titanic/screen_manager.h" +#include "titanic/support/simple_file.h" +#include "titanic/support/screen_manager.h" namespace Titanic { diff --git a/engines/titanic/pet_control/pet_element.h b/engines/titanic/pet_control/pet_element.h index 13f209cefa..2d56b57c66 100644 --- a/engines/titanic/pet_control/pet_element.h +++ b/engines/titanic/pet_control/pet_element.h @@ -23,8 +23,8 @@ #ifndef TITANIC_PET_ELEMENT_H #define TITANIC_PET_ELEMENT_H -#include "titanic/simple_file.h" -#include "titanic/string.h" +#include "titanic/support/simple_file.h" +#include "titanic/support/string.h" #include "titanic/core/link_item.h" #include "titanic/messages/mouse_messages.h" diff --git a/engines/titanic/pet_control/pet_inventory.h b/engines/titanic/pet_control/pet_inventory.h index 3f1d26d796..01f9ebb8d3 100644 --- a/engines/titanic/pet_control/pet_inventory.h +++ b/engines/titanic/pet_control/pet_inventory.h @@ -23,7 +23,7 @@ #ifndef TITANIC_PET_INVENTORY_H #define TITANIC_PET_INVENTORY_H -#include "titanic/simple_file.h" +#include "titanic/support/simple_file.h" #include "titanic/pet_control/pet_section.h" #include "titanic/pet_control/pet_control_sub10.h" #include "titanic/pet_control/pet_control_sub12.h" diff --git a/engines/titanic/pet_control/pet_section.h b/engines/titanic/pet_control/pet_section.h index 352e22420a..169f0c0e20 100644 --- a/engines/titanic/pet_control/pet_section.h +++ b/engines/titanic/pet_control/pet_section.h @@ -24,7 +24,7 @@ #define TITANIC_PET_SECTION_H #include "titanic/messages/mouse_messages.h" -#include "titanic/simple_file.h" +#include "titanic/support/simple_file.h" namespace Titanic { |