Are you okay with what I'm doing?

This commit is contained in:
boy0001 2014-10-05 14:57:47 +11:00
parent fbd9766cfa
commit 4e08ae2a54

View File

@ -0,0 +1,14 @@
package com.intellectualcrafters.plot;
import org.bukkit.generator.BlockPopulator;
import org.bukkit.generator.ChunkGenerator;
public interface PlotSquaredGenerator {
public ChunkGenerator getChunkGenerator();
public BlockPopulator getBlockPopulator();
public PlotManager getPlotManager();
public PlotWorld getPlotWorld();
}