mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-23 21:56:45 +01:00
58 lines
1.5 KiB
Java
58 lines
1.5 KiB
Java
package com.plotsquared.sponge;
|
|
|
|
import java.util.List;
|
|
|
|
import org.bukkit.World;
|
|
import org.spongepowered.api.world.gen.BiomeGenerator;
|
|
import org.spongepowered.api.world.gen.GeneratorPopulator;
|
|
import org.spongepowered.api.world.gen.Populator;
|
|
import org.spongepowered.api.world.gen.WorldGenerator;
|
|
|
|
import com.intellectualcrafters.plot.object.PlotManager;
|
|
import com.intellectualcrafters.plot.object.PlotWorld;
|
|
import com.intellectualcrafters.plot.object.PseudoRandom;
|
|
import com.intellectualcrafters.plot.object.RegionWrapper;
|
|
import com.plotsquared.bukkit.object.PlotPopulator;
|
|
|
|
public class SpongePlotGenerator implements WorldGenerator {
|
|
|
|
public SpongePlotGenerator(String world) {
|
|
}
|
|
|
|
@Override
|
|
public GeneratorPopulator getBaseGeneratorPopulator() {
|
|
// TODO Auto-generated method stub
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public BiomeGenerator getBiomeGenerator() {
|
|
// TODO Auto-generated method stub
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public List<GeneratorPopulator> getGeneratorPopulators() {
|
|
// TODO Auto-generated method stub
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public List<Populator> getPopulators() {
|
|
// TODO Auto-generated method stub
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public void setBaseGeneratorPopulator(GeneratorPopulator arg0) {
|
|
// TODO Auto-generated method stub
|
|
|
|
}
|
|
|
|
@Override
|
|
public void setBiomeGenerator(BiomeGenerator arg0) {
|
|
// TODO Auto-generated method stub
|
|
|
|
}
|
|
}
|