mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-18 18:23:06 +00:00
18 lines
276 B
Java
18 lines
276 B
Java
package ninja.bytecode.iris.util;
|
|
|
|
import org.bukkit.Location;
|
|
import org.bukkit.World;
|
|
|
|
public interface IPlacer
|
|
{
|
|
public World getWorld();
|
|
|
|
public MB get(Location l);
|
|
|
|
public void set(Location l, MB mb);
|
|
|
|
public int getHighestY(Location l);
|
|
|
|
public void flush();
|
|
}
|