added fescen9 branch
This commit is contained in:
commit
af18b73908
17 changed files with 2168 additions and 0 deletions
12
TileUpdate.java
Normal file
12
TileUpdate.java
Normal 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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue