From cd58b06be2a3c0937374fcda32cc26fd739ea6f7 Mon Sep 17 00:00:00 2001 From: dP Date: Wed, 1 Oct 2025 02:13:01 +0500 Subject: [PATCH] Reduce the number of includes in cm_event.hpp to hopefully speed up compilation --- src/citymania/cm_event.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/citymania/cm_event.hpp b/src/citymania/cm_event.hpp index ac56ee037e..e615726b13 100644 --- a/src/citymania/cm_event.hpp +++ b/src/citymania/cm_event.hpp @@ -3,20 +3,20 @@ #include "cm_type.hpp" -#include "../console_func.h" #include "../cargo_type.h" -#include "../company_type.h" #include "../economy_type.h" -#include "../industry_type.h" -#include "../source_type.h" -#include "../station_type.h" -#include "../town_type.h" #include #include #include #include +struct Company; +struct Industry; +struct Station; +struct Source; +struct Town; + namespace citymania { namespace event {