summaryrefslogtreecommitdiff
path: root/src/map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/map.h')
-rw-r--r--src/map.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/map.h b/src/map.h
index 25e29ef06..fdc7525d0 100644
--- a/src/map.h
+++ b/src/map.h
@@ -67,13 +67,6 @@ static inline TileIndex TileVirtXY(uint x, uint y)
return (y >> 4 << MapLogX()) + (x >> 4);
}
-typedef byte Owner;
-enum Owners {
- OWNER_TOWN = 0x0F, // a town owns the tile
- OWNER_NONE = 0x10, // nobody owns the tile
- OWNER_WATER = 0x11, // "water" owns the tile
- OWNER_END = 0x12,
-};
enum {
INVALID_TILE = (TileIndex)-1