From 0347fb2ab67e942826523424c35ede66d27339fe Mon Sep 17 00:00:00 2001 From: tron Date: Sun, 23 Apr 2006 13:48:16 +0000 Subject: (svn r4541) Add a type for slopes and replace many magic numbers by the appropriate enums --- openttd.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'openttd.h') diff --git a/openttd.h b/openttd.h index e391002d6..576d17895 100644 --- a/openttd.h +++ b/openttd.h @@ -48,6 +48,7 @@ typedef struct YearMonthDay { #define MAX_YEAR_END 170 #include "map.h" +#include "slope.h" // Forward declarations of structs. typedef struct Vehicle Vehicle; @@ -127,7 +128,7 @@ typedef enum TransportTypes { typedef struct TileInfo { uint x; uint y; - uint tileh; + Slope tileh; uint type; TileIndex tile; uint z; @@ -331,7 +332,7 @@ typedef void ChangeTileOwnerProc(TileIndex tile, PlayerID old_player, PlayerID n * other bits that can be set? */ typedef uint32 VehicleEnterTileProc(Vehicle *v, TileIndex tile, int x, int y); typedef void VehicleLeaveTileProc(Vehicle *v, TileIndex tile, int x, int y); -typedef uint GetSlopeTilehProc(TileIndex, uint tileh); +typedef Slope GetSlopeTilehProc(TileIndex, Slope tileh); typedef struct { DrawTileProc *draw_tile_proc; -- cgit v1.2.3-54-g00ecf