Removed unused class which should be unbreaking.

This commit is contained in:
MattBDev 2020-02-11 17:09:36 -05:00
parent 4b306d454b
commit b16db904cc

View File

@ -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<T> {
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);
}