diff --git a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/generator/PlotGenerator.java b/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/generator/PlotGenerator.java deleted file mode 100644 index 88c7f2557..000000000 --- a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/generator/PlotGenerator.java +++ /dev/null @@ -1,37 +0,0 @@ -package com.github.intellectualsites.plotsquared.plot.generator; - -import com.github.intellectualsites.plotsquared.plot.object.PlotArea; -import com.github.intellectualsites.plotsquared.plot.object.PlotId; -import com.github.intellectualsites.plotsquared.plot.object.PlotManager; -import com.github.intellectualsites.plotsquared.plot.object.SetupObject; - -public abstract class PlotGenerator { - - public final T generator; - - public PlotGenerator(T generator) { - this.generator = generator; - } - - public abstract void initialize(PlotArea plotArea); - - /** - * TYPE = 2; - * new AugmentedPopulator(world, generator, cluster, plotWorld.TERRAIN == 2, plotWorld.TERRAIN != 2); - * TYPE = 1 - * new AugmentedPopulator(world, gen_class, null, plotWorld.TERRAIN == 2, plotWorld.TERRAIN != 2); - * - * @param area - */ - public abstract void augment(PlotArea area); - - public abstract PlotArea getNewPlotArea(String world, String id, PlotId min, PlotId max); - - public abstract PlotManager getPlotManager(); - - public abstract boolean isFull(); - - public abstract String getName(); - - public abstract void processSetup(SetupObject object); -}