From 43be4d1d924c2367049e40859a09ef2e487c6a1e Mon Sep 17 00:00:00 2001 From: Aaron van Geffen Date: Tue, 29 Oct 2024 13:12:25 +0100 Subject: [PATCH] Remove dependency on Drawing.h from Climate.h --- src/openrct2/world/Climate.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/openrct2/world/Climate.h b/src/openrct2/world/Climate.h index d8bb1354df..5d7860d249 100644 --- a/src/openrct2/world/Climate.h +++ b/src/openrct2/world/Climate.h @@ -9,8 +9,8 @@ #pragma once -#include "../drawing/Drawing.h" #include "../util/Util.h" +#include enum class ClimateType : uint8_t { @@ -78,6 +78,8 @@ void ClimateUpdateSound(); void ClimateStopWeatherSound(); void ClimateForceWeather(WeatherType weather); +enum class FilterPaletteID : int32_t; + bool ClimateIsRaining(); bool ClimateIsSnowing(); bool ClimateIsSnowingHeavily();