diff --git a/PlotSquared/src/com/intellectualcrafters/plot/PlotSquaredGenerator.java b/PlotSquared/src/com/intellectualcrafters/plot/PlotSquaredGenerator.java new file mode 100644 index 000000000..1403455ec --- /dev/null +++ b/PlotSquared/src/com/intellectualcrafters/plot/PlotSquaredGenerator.java @@ -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(); +}