summaryrefslogtreecommitdiff
path: root/src/openttd.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-12-19 23:26:02 +0000
committerrubidium <rubidium@openttd.org>2007-12-19 23:26:02 +0000
commitbe923601bfba2e76bdf0b32af6d3f7f5e862b3a9 (patch)
tree6c554e9bcc282dbe3b7ab306ad3c91c7a4ff545b /src/openttd.h
parent2cf7d5b2cb661ab905bbd8e37f2c10be1d00908f (diff)
downloadopenttd-be923601bfba2e76bdf0b32af6d3f7f5e862b3a9.tar.xz
(svn r11669) -Codechange: refactor tile.h -> tile_type.h and tile_map.h
Diffstat (limited to 'src/openttd.h')
-rw-r--r--src/openttd.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/openttd.h b/src/openttd.h
index ec68bf914..7fd02174b 100644
--- a/src/openttd.h
+++ b/src/openttd.h
@@ -26,10 +26,10 @@ struct Pair {
};
#include "map.h"
-#include "slope.h"
+#include "slope_type.h"
+#include "vehicle_type.h"
// Forward declarations of structs.
-struct Vehicle;
struct Depot;
struct Waypoint;
struct Station;
@@ -55,7 +55,6 @@ static const StringID INVALID_STRING_ID = 0xFFFF;
typedef EngineID *EngineList; ///< engine list type placeholder acceptable for C code (see helpers.cpp)
/* IDs used in Pools */
-typedef uint16 VehicleID;
typedef uint16 StationID;
static const StationID INVALID_STATION = 0xFFFF;
typedef uint16 RoadStopID;