summaryrefslogtreecommitdiff
path: root/map.h
diff options
context:
space:
mode:
Diffstat (limited to 'map.h')
-rw-r--r--map.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/map.h b/map.h
index a62f65f34..7a5ed5ff4 100644
--- a/map.h
+++ b/map.h
@@ -24,4 +24,15 @@ static inline uint MapMaxY(void) { return MapSizeY() - 1; }
/* The number of tiles in the map */
static inline uint MapSize(void) { return MapSizeX() * MapSizeY(); }
+typedef int16 TileIndexDiff;
+
+
+static inline TileIndexDiff TileOffsByDir(uint dir)
+{
+ extern const TileIndexDiff _tileoffs_by_dir[4];
+
+ assert(dir < lengthof(_tileoffs_by_dir));
+ return _tileoffs_by_dir[dir];
+}
+
#endif