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