From dd2a140d1f13202fdaf2e053cc4f1dfeea6f043b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=B6eh=20Matt?= <5415177+ZehMatt@users.noreply.github.com> Date: Thu, 21 Oct 2021 16:44:56 +0300 Subject: [PATCH] Apply review suggestions --- src/openrct2/world/ConstructionClearance.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/openrct2/world/ConstructionClearance.h b/src/openrct2/world/ConstructionClearance.h index 8b6800098e..2f02de9d72 100644 --- a/src/openrct2/world/ConstructionClearance.h +++ b/src/openrct2/world/ConstructionClearance.h @@ -10,12 +10,16 @@ #pragma once #include "../actions/GameActionResult.h" -#include "Location.hpp" +#include "../common.h" #include "Map.h" -#include "TileElement.h" #include +struct TileElement; +struct CoordsXY; +struct CoordsXYRangedZ; +class QuarterTile; + using CLEAR_FUNC = int32_t (*)(TileElement** tile_element, const CoordsXY& coords, uint8_t flags, money32* price); int32_t map_place_non_scenery_clear_func(TileElement** tile_element, const CoordsXY& coords, uint8_t flags, money32* price);