2006-08-03 06:44:54 +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 road_cmd.h Road related functions. */
|
2007-03-28 20:41:35 +00:00
|
|
|
|
2006-08-03 06:44:54 +00:00
|
|
|
#ifndef ROAD_CMD_H
|
|
|
|
#define ROAD_CMD_H
|
|
|
|
|
2007-12-18 19:52:14 +00:00
|
|
|
#include "direction_type.h"
|
2010-01-15 16:41:15 +00:00
|
|
|
#include "road_type.h"
|
2006-08-03 06:44:54 +00:00
|
|
|
|
2007-05-21 21:58:31 +00:00
|
|
|
void DrawRoadDepotSprite(int x, int y, DiagDirection dir, RoadType rt);
|
2009-07-05 13:21:51 +00:00
|
|
|
void UpdateNearestTownForRoadTiles(bool invalidate);
|
2006-08-03 06:44:54 +00:00
|
|
|
|
2006-09-28 18:42:35 +00:00
|
|
|
#endif /* ROAD_CMD_H */
|