Reworked directory structure.
This commit is contained in:
parent
b5bd4bd965
commit
9cdc23051f
13 changed files with 0 additions and 75 deletions
12
src/TileUpdate.java
Normal file
12
src/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