mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-11 13:10:45 +00:00
07e3c096b3
-Codechange: rewrite parts of code responsible for caching index of nearest town
14 lines
279 B
C
14 lines
279 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);
|
|
|
|
#endif /* ROAD_CMD_H */
|