This commit is contained in:
boy0001
2015-07-27 04:46:24 +10:00
parent e1c8dcc4be
commit 56970b85e8
6 changed files with 13 additions and 13 deletions

View File

@@ -4,11 +4,11 @@ import com.intellectualcrafters.plot.object.PlotCluster;
import com.intellectualcrafters.plot.object.PlotManager;
import com.intellectualcrafters.plot.object.PlotWorld;
public abstract class PlotGenerator2<T> {
public abstract class PlotGenerator<T> {
public final String world;
public T generator;
public PlotGenerator2(String world, T generator) {
public PlotGenerator(String world, T generator) {
this.world = world;
this.generator = generator;
}