From 4e08ae2a5415e7c3b825babd96d826a98ba23555 Mon Sep 17 00:00:00 2001 From: boy0001 Date: Sun, 5 Oct 2014 14:57:47 +1100 Subject: [PATCH] Are you okay with what I'm doing? --- .../plot/PlotSquaredGenerator.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 PlotSquared/src/com/intellectualcrafters/plot/PlotSquaredGenerator.java 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(); +}