blob: b488054170118aa58a9e4472fcf4dc8aaec75a29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* $Id$ */
/** @file timetable.h */
#ifndef TIMETABLE_H
#define TIMETABLE_H
void ShowTimetableWindow(const Vehicle *v);
void UpdateVehicleTimetable(Vehicle *v, bool travelling);
#endif /* TIMETABLE_H */
|