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

View file

@ -1,12 +0,0 @@
/* 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;
}
}