(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.
This commit is contained in:
belugas
2009-02-05 03:41:42 +00:00
parent ccaff36931
commit b53add9025
3 changed files with 33 additions and 9 deletions

View File

@@ -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},
};