mirror of
https://github.com/encounter/dynmap.git
synced 2026-03-30 11:08:39 -07: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;
|
|
}
|
|
}
|