mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-22 12:13:23 +00:00
25 lines
293 B
Java
25 lines
293 B
Java
package ninja.bytecode.iris.util;
|
|
|
|
import org.bukkit.World;
|
|
|
|
public abstract class Placer implements IPlacer
|
|
{
|
|
protected final World world;
|
|
|
|
public Placer(World world)
|
|
{
|
|
this.world = world;
|
|
}
|
|
|
|
@Override
|
|
public World getWorld()
|
|
{
|
|
return world;
|
|
}
|
|
|
|
public void flush()
|
|
{
|
|
|
|
}
|
|
}
|