mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 21:26:45 +01:00
Removed unused class which should be unbreaking.
This commit is contained in:
parent
4b306d454b
commit
b16db904cc
@ -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);
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user