Adjust includes

This commit is contained in:
ζeh Matt 2021-11-26 16:49:52 +02:00
parent d12d538d84
commit c4ad5fcd15
No known key found for this signature in database
GPG Key ID: 18CE582C71A225B0
41 changed files with 38 additions and 41 deletions

View File

@ -17,7 +17,7 @@
#include <openrct2/Input.h>
#include <openrct2/OpenRCT2.h>
#include <openrct2/config/Config.h>
#include <openrct2/entity/Entity.h>
#include <openrct2/entity/EntityRegistry.h>
#include <openrct2/entity/Guest.h>
#include <openrct2/entity/Staff.h>
#include <openrct2/localisation/Date.h>

View File

@ -13,7 +13,7 @@
#include <openrct2/Context.h>
#include <openrct2/audio/audio.h>
#include <openrct2/drawing/Drawing.h>
#include <openrct2/entity/Entity.h>
#include <openrct2/entity/EntityRegistry.h>
#include <openrct2/entity/Peep.h>
#include <openrct2/entity/Staff.h>
#include <openrct2/localisation/Localisation.h>

View File

@ -21,7 +21,7 @@
#include <openrct2/actions/StaffSetOrdersAction.h>
#include <openrct2/actions/StaffSetPatrolAreaAction.h>
#include <openrct2/config/Config.h>
#include <openrct2/entity/Entity.h>
#include <openrct2/entity/EntityRegistry.h>
#include <openrct2/entity/Staff.h>
#include <openrct2/localisation/Localisation.h>
#include <openrct2/management/Finance.h>

View File

@ -12,7 +12,7 @@
#include <openrct2/Game.h>
#include <openrct2/actions/StaffFireAction.h>
#include <openrct2/drawing/Drawing.h>
#include <openrct2/entity/Entity.h>
#include <openrct2/entity/EntityRegistry.h>
#include <openrct2/entity/Staff.h>
#include <openrct2/interface/Colour.h>
#include <openrct2/localisation/Localisation.h>

View File

@ -21,7 +21,6 @@
#include <openrct2/drawing/Drawing.h>
#include <openrct2/entity/Balloon.h>
#include <openrct2/entity/Duck.h>
#include <openrct2/entity/Entity.h>
#include <openrct2/entity/Peep.h>
#include <openrct2/localisation/Localisation.h>
#include <openrct2/ride/Vehicle.h>

View File

@ -10,7 +10,7 @@
#include "BalloonPressAction.h"
#include "../entity/Balloon.h"
#include "../entity/Entity.h"
#include "../entity/EntityRegistry.h"
#include "GameAction.h"
BalloonPressAction::BalloonPressAction(uint16_t spriteIndex)

View File

@ -11,7 +11,7 @@
#include "../Context.h"
#include "../OpenRCT2.h"
#include "../entity/Entity.h"
#include "../entity/EntityRegistry.h"
GuestSetFlagsAction::GuestSetFlagsAction(uint16_t peepId, uint32_t flags)
: _peepId(peepId)

View File

@ -13,7 +13,7 @@
#include "../Context.h"
#include "../core/MemoryStream.h"
#include "../drawing/Drawing.h"
#include "../entity/Entity.h"
#include "../entity/EntityRegistry.h"
#include "../interface/Window.h"
#include "../localisation/Localisation.h"
#include "../localisation/StringIds.h"

View File

@ -10,7 +10,7 @@
#include "PeepPickupAction.h"
#include "../Input.h"
#include "../entity/Entity.h"
#include "../entity/EntityRegistry.h"
#include "../entity/Peep.h"
#include "../network/network.h"
#include "../util/Util.h"

View File

@ -9,7 +9,7 @@
#include "StaffFireAction.h"
#include "../entity/Entity.h"
#include "../entity/EntityRegistry.h"
#include "../entity/Staff.h"
#include "../interface/Window.h"

View File

@ -10,7 +10,7 @@
#include "StaffSetCostumeAction.h"
#include "../Context.h"
#include "../entity/Entity.h"
#include "../entity/EntityRegistry.h"
#include "../interface/Window.h"
#include "../localisation/Localisation.h"
#include "../localisation/StringIds.h"

View File

@ -13,7 +13,7 @@
#include "../Context.h"
#include "../core/MemoryStream.h"
#include "../drawing/Drawing.h"
#include "../entity/Entity.h"
#include "../entity/EntityRegistry.h"
#include "../entity/Staff.h"
#include "../interface/Window.h"
#include "../localisation/Localisation.h"

View File

@ -10,7 +10,7 @@
#include "StaffSetOrdersAction.h"
#include "../Context.h"
#include "../entity/Entity.h"
#include "../entity/EntityRegistry.h"
#include "../entity/Staff.h"
#include "../interface/Window.h"
#include "../localisation/Localisation.h"

View File

@ -9,7 +9,7 @@
#include "StaffSetPatrolAreaAction.h"
#include "../entity/Entity.h"
#include "../entity/EntityRegistry.h"
#include "../entity/Peep.h"
#include "../entity/Staff.h"
#include "../interface/Window.h"

View File

@ -14,7 +14,7 @@
# include "../Game.h"
# include "../common.h"
# include "../config/Config.h"
# include "../entity/Entity.h"
# include "../entity/EntityRegistry.h"
# include "../interface/Viewport.h"
# include "../interface/Window.h"
# include "../interface/Window_internal.h"

View File

@ -12,8 +12,8 @@
#include "../common.h"
#include "../rct12/RCT12.h"
#include "../world/Location.hpp"
#include "Entity.h"
#include "EntityBase.h"
#include "EntityRegistry.h"
#include <list>
#include <vector>

View File

@ -16,7 +16,6 @@
#include "../localisation/Localisation.h"
#include "../network/network.h"
#include "../world/Map.h"
#include "Entity.h"
#include "EntityRegistry.h"
static constexpr const CoordsXY _moneyEffectMoveOffset[] = {

View File

@ -1,7 +1,7 @@
#include "Window_internal.h"
#include "../entity/Entity.h"
#include "../entity/EntityList.h"
#include "../entity/EntityRegistry.h"
#include "Viewport.h"
void rct_window::SetLocation(const CoordsXYZ& coords)

View File

@ -13,7 +13,7 @@
#include "../Input.h"
#include "../OpenRCT2.h"
#include "../audio/audio.h"
#include "../entity/Entity.h"
#include "../entity/EntityRegistry.h"
#include "../entity/Peep.h"
#include "../interface/Window.h"
#include "../interface/Window_internal.h"

View File

@ -12,7 +12,7 @@
#include "../../config/Config.h"
#include "../../core/Numerics.hpp"
#include "../../drawing/LightFX.h"
#include "../../entity/Entity.h"
#include "../../entity/EntityRegistry.h"
#include "../../entity/Peep.h"
#include "../../entity/Staff.h"
#include "../../interface/Viewport.h"

View File

@ -16,7 +16,7 @@
#include "../../core/Guard.hpp"
#include "../../core/Numerics.hpp"
#include "../../drawing/Drawing.h"
#include "../../entity/Entity.h"
#include "../../entity/EntityRegistry.h"
#include "../../entity/Peep.h"
#include "../../entity/Staff.h"
#include "../../interface/Colour.h"

View File

@ -15,7 +15,6 @@
#include "../actions/RideSetVehicleAction.h"
#include "../actions/TrackRemoveAction.h"
#include "../common.h"
#include "../entity/Entity.h"
#include "../entity/EntityList.h"
#include "../entity/EntityRegistry.h"
#include "../entity/Staff.h"

View File

@ -9,8 +9,8 @@
#include "TrainManager.h"
#include "../entity/Entity.h"
#include "../entity/EntityList.h"
#include "../entity/EntityRegistry.h"
#include "Vehicle.h"
namespace TrainManager

View File

@ -12,7 +12,7 @@
#include "../Game.h"
#include "../drawing/Drawing.h"
#include "../drawing/LightFX.h"
#include "../entity/Entity.h"
#include "../entity/EntityRegistry.h"
#include "../interface/Viewport.h"
#include "../paint/Paint.h"
#include "../paint/sprite/Paint.Sprite.h"

View File

@ -8,7 +8,7 @@
*****************************************************************************/
#include "../../drawing/Drawing.h"
#include "../../entity/Entity.h"
#include "../../entity/EntityRegistry.h"
#include "../../interface/Viewport.h"
#include "../../paint/Paint.h"
#include "../../paint/Supports.h"

View File

@ -7,7 +7,7 @@
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
#include "../../entity/Entity.h"
#include "../../entity/EntityRegistry.h"
#include "../../interface/Viewport.h"
#include "../../paint/Paint.h"
#include "../../paint/Supports.h"

View File

@ -7,7 +7,7 @@
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
#include "../../entity/Entity.h"
#include "../../entity/EntityRegistry.h"
#include "../../interface/Viewport.h"
#include "../../paint/Paint.h"
#include "../../paint/Supports.h"

View File

@ -7,7 +7,7 @@
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
#include "../../entity/Entity.h"
#include "../../entity/EntityRegistry.h"
#include "../../entity/Guest.h"
#include "../../interface/Viewport.h"
#include "../../paint/Paint.h"

View File

@ -7,7 +7,7 @@
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
#include "../../entity/Entity.h"
#include "../../entity/EntityRegistry.h"
#include "../../interface/Viewport.h"
#include "../../paint/Paint.h"
#include "../../paint/Supports.h"

View File

@ -7,7 +7,7 @@
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
#include "../../entity/Entity.h"
#include "../../entity/EntityRegistry.h"
#include "../../interface/Viewport.h"
#include "../../paint/Paint.h"
#include "../../paint/Supports.h"

View File

@ -8,7 +8,7 @@
*****************************************************************************/
#include "../../config/Config.h"
#include "../../entity/Entity.h"
#include "../../entity/EntityRegistry.h"
#include "../../entity/Guest.h"
#include "../../interface/Viewport.h"
#include "../../paint/Paint.h"

View File

@ -8,7 +8,7 @@
*****************************************************************************/
#include "../../common.h"
#include "../../entity/Entity.h"
#include "../../entity/EntityRegistry.h"
#include "../../entity/Guest.h"
#include "../../interface/Viewport.h"
#include "../../paint/Paint.h"

View File

@ -7,7 +7,7 @@
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
#include "../../entity/Entity.h"
#include "../../entity/EntityRegistry.h"
#include "../../interface/Viewport.h"
#include "../../paint/Paint.h"
#include "../../paint/Supports.h"

View File

@ -8,7 +8,7 @@
*****************************************************************************/
#include "../../common.h"
#include "../../entity/Entity.h"
#include "../../entity/EntityRegistry.h"
#include "../../interface/Viewport.h"
#include "../../paint/Paint.h"
#include "../../paint/Supports.h"

View File

@ -7,7 +7,7 @@
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
#include "../../entity/Entity.h"
#include "../../entity/EntityRegistry.h"
#include "../../interface/Viewport.h"
#include "../../object/StationObject.h"
#include "../../paint/Paint.h"

View File

@ -7,7 +7,7 @@
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
#include "../../entity/Entity.h"
#include "../../entity/EntityRegistry.h"
#include "../../interface/Viewport.h"
#include "../../paint/Paint.h"
#include "../../paint/Supports.h"

View File

@ -7,7 +7,7 @@
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
#include "../../entity/Entity.h"
#include "../../entity/EntityRegistry.h"
#include "../../interface/Viewport.h"
#include "../../object/StationObject.h"
#include "../../paint/Paint.h"

View File

@ -7,7 +7,7 @@
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
#include "../../entity/Entity.h"
#include "../../entity/EntityRegistry.h"
#include "../../interface/Viewport.h"
#include "../../object/StationObject.h"
#include "../../paint/Paint.h"

View File

@ -7,7 +7,7 @@
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
#include "../../entity/Entity.h"
#include "../../entity/EntityRegistry.h"
#include "../../interface/Viewport.h"
#include "../../localisation/Localisation.h"
#include "../../paint/Paint.h"

View File

@ -8,7 +8,7 @@
*****************************************************************************/
#include "../../common.h"
#include "../../entity/Entity.h"
#include "../../entity/EntityRegistry.h"
#include "../../interface/Viewport.h"
#include "../../paint/Paint.h"
#include "../../paint/Supports.h"

View File

@ -8,7 +8,7 @@
*****************************************************************************/
#include "../../config/Config.h"
#include "../../entity/Entity.h"
#include "../../entity/EntityRegistry.h"
#include "../../interface/Viewport.h"
#include "../../paint/Paint.h"
#include "../../paint/Supports.h"