(svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)

This commit is contained in:
KUDr
2007-01-10 18:12:09 +00:00
parent dc44d34107
commit 07c30785ab
155 changed files with 0 additions and 0 deletions

19
src/station_map.cpp Normal file
View File

@@ -0,0 +1,19 @@
/* $Id$ */
#include "stdafx.h"
#include "openttd.h"
#include "station_map.h"
StationType GetStationType(TileIndex t)
{
assert(IsTileType(t, MP_STATION));
if (IsRailwayStation(t)) return STATION_RAIL;
if (IsAirport(t)) return STATION_AIRPORT;
if (IsTruckStop(t)) return STATION_TRUCK;
if (IsBusStop(t)) return STATION_BUS;
if (IsOilRig(t)) return STATION_OILRIG;
if (IsDock(t)) return STATION_DOCK;
assert(IsBuoy_(t));
return STATION_BUOY;
}