Codechange: Move Ticks into their own class

This commit is contained in:
Tyler Trahan
2023-08-16 09:01:24 -04:00
parent 30172fc037
commit fca2b37726
34 changed files with 132 additions and 116 deletions

View File

@@ -10,6 +10,7 @@
#ifndef TIMETABLE_H
#define TIMETABLE_H
#include "timer/timer_game_tick.h"
#include "date_type.h"
#include "timer/timer_game_calendar.h"
#include "vehicle_type.h"
@@ -18,6 +19,6 @@ static const TimerGameCalendar::Year MAX_TIMETABLE_START_YEARS = 15; ///< The ma
void ShowTimetableWindow(const Vehicle *v);
void UpdateVehicleTimetable(Vehicle *v, bool travelling);
void SetTimetableParams(int param1, int param2, Ticks ticks);
void SetTimetableParams(int param1, int param2, TimerGameTick::Ticks ticks);
#endif /* TIMETABLE_H */