Put classes in package to be more compatible with Bukkit.

This commit is contained in:
FrozenCow 2011-01-05 19:41:21 +01:00
parent 80f9435a1a
commit f0ec375834
12 changed files with 39 additions and 35 deletions

View 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;
}
}