summaryrefslogtreecommitdiff
path: root/src/table
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2009-02-05 03:41:42 +0000
committerbelugas <belugas@openttd.org>2009-02-05 03:41:42 +0000
commitb53add90251d2d6afdea37d33038536a43a824da (patch)
tree7fc0cfc3838384f419b9b5b9902bd9bead9de669 /src/table
parentccaff3693104012594f33bce624f994c4bb730aa (diff)
downloadopenttd-b53add90251d2d6afdea37d33038536a43a824da.tar.xz
(svn r15350) -Codechange: Create a spec array to hold the data definitions of unmovables objects.
Note that this is the very basic spec, it will be populated a bit more, later.
Diffstat (limited to 'src/table')
-rw-r--r--src/table/unmovable_land.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/table/unmovable_land.h b/src/table/unmovable_land.h
index 25db9828c..000183564 100644
--- a/src/table/unmovable_land.h
+++ b/src/table/unmovable_land.h
@@ -92,3 +92,11 @@ static const DrawTileSprites _unmovable_display_datas[] = {
};
#undef TILE_SPRITE_LINE
+
+static const UnmovableSpec _original_unmovable[] = {
+ {STR_5801_TRANSMITTER, 1, 1},
+ {STR_5802_LIGHTHOUSE, 1, 1},
+ {STR_2016_STATUE, 1, 1},
+ {STR_5805_COMPANY_OWNED_LAND, 10, 2},
+ {STR_5803_COMPANY_HEADQUARTERS, 1, 1},
+};