Put classes in package to be more compatible with Bukkit.
This commit is contained in:
parent
80f9435a1a
commit
f0ec375834
12 changed files with 39 additions and 35 deletions
14
src/main/java/org/dynmap/TileUpdate.java
Normal file
14
src/main/java/org/dynmap/TileUpdate.java
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
package org.dynmap;
|
||||
|
||||
/* 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