mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-17 21:25:40 +00:00
14 lines
313 B
C
14 lines
313 B
C
/* $Id$ */
|
|
|
|
/** @file road_cmd.h Road related functions. */
|
|
|
|
#ifndef ROAD_CMD_H
|
|
#define ROAD_CMD_H
|
|
|
|
#include "direction_type.h"
|
|
|
|
void DrawRoadDepotSprite(int x, int y, DiagDirection dir, RoadType rt);
|
|
void UpdateNearestTownForRoadTiles(bool invalidate, const struct Town *ignore = NULL);
|
|
|
|
#endif /* ROAD_CMD_H */
|