Reworked directory structure.

This commit is contained in:
FrozenCow 2010-12-29 02:44:30 +01:00
parent b5bd4bd965
commit 9cdc23051f
13 changed files with 0 additions and 75 deletions

12
src/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;
}
}