added fescen9 branch

This commit is contained in:
kzed 2010-12-04 13:24:32 +00:00
commit af18b73908
17 changed files with 2168 additions and 0 deletions

12
TileUpdate.java Normal file
View file

@ -0,0 +1,12 @@
/* this class stores a tile update */
public class TileUpdate {
public long at;
public MapTile tile;
public TileUpdate(long at, MapTile tile)
{
this.at = at;
this.tile = tile;
}
}