station_map.h
author bjarni
Fri, 24 Mar 2006 10:53:49 +0000
changeset 3318 b54ff6bb28be
parent 3315 1f65f8260092
child 3334 b72ac8637a30
permissions -rw-r--r--
(svn r4084) -Documentation: [OSX] changed OSX specific docs
-added an explanation to why there is a special Jaguar download (people appears to download it even when they should download the other one)
-removed the long outdated README_if_game_crashed_on_OSX.txt
/* $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));
}