You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OpenTTD-patches/station_map.h

15 lines
219 B
C

/* $Id$ */
#include "station.h"
static inline StationID GetStationIndex(TileIndex t)
{
return (StationID)_m[t].m2;
}
static inline Station* GetStationByTile(TileIndex t)
{
return GetStation(GetStationIndex(t));
}