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:
parent
cc4ba189ce
commit
c2cfeb540c
8 changed files with 44 additions and 38 deletions
|
@ -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");
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue