depot.h
changeset 3957 25f4a4f22e05
parent 3953 e64bbd8598e2
child 4000 4009d092b306
--- a/depot.h	Sun Jun 04 18:22:32 2006 +0000
+++ b/depot.h	Mon Jun 05 08:34:39 2006 +0000
@@ -8,11 +8,8 @@
 
 #include "direction.h"
 #include "pool.h"
-#include "rail_map.h"
-#include "road_map.h"
 #include "tile.h"
 #include "variables.h"
-#include "water_map.h"
 
 struct Depot {
 	TileIndex xy;
@@ -92,20 +89,6 @@
 	}
 }
 
-/**
- * Returns the direction the exit of the depot on the given tile is facing.
- */
-static inline DiagDirection GetDepotDirection(TileIndex tile, TransportType type)
-{
-	assert(IsTileDepotType(tile, type));
-
-	switch (type) {
-		case TRANSPORT_RAIL:  return GetRailDepotDirection(tile);
-		case TRANSPORT_ROAD:  return GetRoadDepotDirection(tile);
-		case TRANSPORT_WATER: return GetShipDepotDirection(tile);
-		default: return INVALID_DIAGDIR; /* Not reached */
-	}
-}
 
 /**
 	Find out if the slope of the tile is suitable to build a depot of given direction