2007-06-20 19:26:25 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2009-08-21 20:21:05 +00:00
|
|
|
/*
|
|
|
|
* This file is part of OpenTTD.
|
|
|
|
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
|
|
|
|
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2008-05-06 15:11:33 +00:00
|
|
|
/** @file timetable.h Functions related to time tabling. */
|
2007-06-20 19:26:25 +00:00
|
|
|
|
|
|
|
#ifndef TIMETABLE_H
|
|
|
|
#define TIMETABLE_H
|
|
|
|
|
2009-11-21 12:43:09 +00:00
|
|
|
#include "date_type.h"
|
2010-01-15 16:41:15 +00:00
|
|
|
#include "vehicle_type.h"
|
2009-11-21 12:43:09 +00:00
|
|
|
|
2007-06-20 19:26:25 +00:00
|
|
|
void ShowTimetableWindow(const Vehicle *v);
|
|
|
|
void UpdateVehicleTimetable(Vehicle *v, bool travelling);
|
2009-11-21 12:43:09 +00:00
|
|
|
void SetTimetableParams(int param1, int param2, Ticks ticks);
|
2007-06-20 19:26:25 +00:00
|
|
|
|
|
|
|
#endif /* TIMETABLE_H */
|