mirror of
https://github.com/webbukkit/dynmap.git
synced 2025-01-12 19:00:44 +01:00
13 lines
191 B
Java
13 lines
191 B
Java
|
/* 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;
|
||
|
}
|
||
|
}
|