tiles.rc: move BURNBIT knowledge from source code to tiles.rc

git-svn-id: https://micropolis.googlecode.com/svn/trunk/micropolis-java@743 d9718cc8-9f43-0410-858b-315f434eb58c
This commit is contained in:
jason@long.name 2013-07-20 21:10:40 +00:00
parent cc4ba189ce
commit c2cfeb540c
8 changed files with 44 additions and 38 deletions

View file

@ -6,6 +6,7 @@ public class TileSpec
{
int tileNumber;
TileSpec animNext;
boolean canBurn;
boolean zone;
Map<String,String> attributes;
@ -69,6 +70,7 @@ public class TileSpec
}
}
this.canBurn = getBooleanAttribute("noburn");
this.zone = getBooleanAttribute("zone");
}