diff options
author | belugas <belugas@openttd.org> | 2009-02-05 03:41:42 +0000 |
---|---|---|
committer | belugas <belugas@openttd.org> | 2009-02-05 03:41:42 +0000 |
commit | bf82545b4ab37399f89d50b497c0d5c8f7519c77 (patch) | |
tree | 7fc0cfc3838384f419b9b5b9902bd9bead9de669 /src/table | |
parent | 63cc1bd21f90a6099824178d59e402eb19eeffae (diff) | |
download | openttd-bf82545b4ab37399f89d50b497c0d5c8f7519c77.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.h | 8 |
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}, +}; |