1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-18 20:19:11 +00:00

Fix: Add missing includes to timers from script implementation files

This commit is contained in:
Tyler Trahan
2023-12-14 17:22:44 -05:00
parent fddcaef74a
commit b2e6e8fd9e
3 changed files with 3 additions and 1 deletions

View File

@@ -15,6 +15,7 @@
#include "../../strings_func.h"
#include "../../station_cmd.h"
#include "../../waypoint_cmd.h"
#include "../../timer/timer_game_calendar.h"
#include "table/strings.h"
#include "../../safeguards.h"

View File

@@ -11,7 +11,7 @@
#define SCRIPT_DATE_HPP
#include "script_object.hpp"
#include "timer/timer_game_calendar.h"
#include "../../timer/timer_game_calendar.h"
/**
* Class that handles all date related (calculation) functions.

View File

@@ -18,6 +18,7 @@
#include "../../engine_func.h"
#include "../../articulated_vehicles.h"
#include "../../engine_cmd.h"
#include "../../timer/timer_game_calendar.h"
#include "table/strings.h"
#include "../../safeguards.h"