mirror of
https://github.com/BentoBoxWorld/Boxed.git
synced 2025-01-05 18:37:48 +01:00
Reorganizing generator classes
This commit is contained in:
parent
4a675e0433
commit
52a5aea3e0
@ -22,12 +22,12 @@ import world.bentobox.bentobox.api.flags.Flag;
|
||||
import world.bentobox.bentobox.api.flags.Flag.Mode;
|
||||
import world.bentobox.bentobox.api.flags.Flag.Type;
|
||||
import world.bentobox.bentobox.managers.RanksManager;
|
||||
import world.bentobox.boxed.generators.AbstractBoxedChunkGenerator;
|
||||
import world.bentobox.boxed.generators.BoxedBiomeGenerator;
|
||||
import world.bentobox.boxed.generators.BoxedBlockPopulator;
|
||||
import world.bentobox.boxed.generators.BoxedChunkGenerator;
|
||||
import world.bentobox.boxed.generators.BoxedSeedChunkGenerator;
|
||||
import world.bentobox.boxed.generators.SeedBiomeGenerator;
|
||||
import world.bentobox.boxed.generators.biomes.BoxedBiomeGenerator;
|
||||
import world.bentobox.boxed.generators.biomes.SeedBiomeGenerator;
|
||||
import world.bentobox.boxed.generators.chunks.AbstractBoxedChunkGenerator;
|
||||
import world.bentobox.boxed.generators.chunks.BoxedBlockPopulator;
|
||||
import world.bentobox.boxed.generators.chunks.BoxedChunkGenerator;
|
||||
import world.bentobox.boxed.generators.chunks.BoxedSeedChunkGenerator;
|
||||
import world.bentobox.boxed.listeners.AdvancementListener;
|
||||
import world.bentobox.boxed.listeners.EnderPearlListener;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
package world.bentobox.boxed.generators;
|
||||
package world.bentobox.boxed.generators.biomes;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.Arrays;
|
||||
@ -23,6 +23,7 @@ import org.bukkit.util.Vector;
|
||||
import com.google.common.base.Enums;
|
||||
|
||||
import world.bentobox.boxed.Boxed;
|
||||
import world.bentobox.boxed.generators.chunks.BoxedChunkGenerator;
|
||||
|
||||
/**
|
||||
* NOT USED
|
@ -1,4 +1,4 @@
|
||||
package world.bentobox.boxed.generators;
|
||||
package world.bentobox.boxed.generators.biomes;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
@ -10,6 +10,7 @@ import org.bukkit.generator.BiomeProvider;
|
||||
import org.bukkit.generator.WorldInfo;
|
||||
|
||||
import world.bentobox.boxed.Boxed;
|
||||
import world.bentobox.boxed.generators.chunks.BoxedChunkGenerator;
|
||||
|
||||
/**
|
||||
* Copies biomes from seed world
|
@ -1,4 +1,4 @@
|
||||
package world.bentobox.boxed.generators;
|
||||
package world.bentobox.boxed.generators.biomes;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.Arrays;
|
||||
@ -29,6 +29,8 @@ import world.bentobox.bentobox.BentoBox;
|
||||
import world.bentobox.bentobox.util.Pair;
|
||||
import world.bentobox.bentobox.util.Util;
|
||||
import world.bentobox.boxed.Boxed;
|
||||
import world.bentobox.boxed.generators.chunks.AbstractBoxedChunkGenerator;
|
||||
import world.bentobox.boxed.generators.chunks.BoxedChunkGenerator;
|
||||
|
||||
/**
|
||||
* Generates the biomes for the seed world
|
@ -1,4 +1,4 @@
|
||||
package world.bentobox.boxed.generators;
|
||||
package world.bentobox.boxed.generators.biomes;
|
||||
|
||||
import org.bukkit.World.Environment;
|
||||
import org.bukkit.block.Biome;
|
@ -1,4 +1,4 @@
|
||||
package world.bentobox.boxed.generators;
|
||||
package world.bentobox.boxed.generators.biomes;
|
||||
|
||||
import org.bukkit.World.Environment;
|
||||
import org.bukkit.block.Biome;
|
@ -1,10 +1,11 @@
|
||||
package world.bentobox.boxed.generators;
|
||||
package world.bentobox.boxed.generators.biomes;
|
||||
|
||||
import org.bukkit.World.Environment;
|
||||
import org.bukkit.block.Biome;
|
||||
import org.bukkit.generator.BiomeProvider;
|
||||
|
||||
import world.bentobox.boxed.Boxed;
|
||||
import world.bentobox.boxed.generators.chunks.AbstractBoxedChunkGenerator;
|
||||
|
||||
/**
|
||||
* @author tastybento
|
@ -0,0 +1 @@
|
||||
package world.bentobox.boxed.generators.biomes;
|
@ -1,4 +1,4 @@
|
||||
package world.bentobox.boxed.generators;
|
||||
package world.bentobox.boxed.generators.chunks;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
@ -1,4 +1,4 @@
|
||||
package world.bentobox.boxed.generators;
|
||||
package world.bentobox.boxed.generators.chunks;
|
||||
|
||||
import java.util.Map;
|
||||
import java.util.Objects;
|
||||
@ -22,8 +22,8 @@ import world.bentobox.bentobox.blueprints.dataobjects.BlueprintBlock;
|
||||
import world.bentobox.bentobox.blueprints.dataobjects.BlueprintCreatureSpawner;
|
||||
import world.bentobox.bentobox.util.Pair;
|
||||
import world.bentobox.boxed.Boxed;
|
||||
import world.bentobox.boxed.generators.AbstractBoxedChunkGenerator.ChestData;
|
||||
import world.bentobox.boxed.generators.AbstractBoxedChunkGenerator.ChunkStore;
|
||||
import world.bentobox.boxed.generators.chunks.AbstractBoxedChunkGenerator.ChestData;
|
||||
import world.bentobox.boxed.generators.chunks.AbstractBoxedChunkGenerator.ChunkStore;
|
||||
|
||||
/**
|
||||
* @author tastybento
|
@ -1,4 +1,4 @@
|
||||
package world.bentobox.boxed.generators;
|
||||
package world.bentobox.boxed.generators.chunks;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
@ -43,9 +43,9 @@ import world.bentobox.bentobox.blueprints.dataobjects.BlueprintCreatureSpawner;
|
||||
import world.bentobox.bentobox.blueprints.dataobjects.BlueprintEntity;
|
||||
import world.bentobox.bentobox.util.Pair;
|
||||
import world.bentobox.boxed.Boxed;
|
||||
import world.bentobox.boxed.generators.AbstractBoxedChunkGenerator.ChestData;
|
||||
import world.bentobox.boxed.generators.AbstractBoxedChunkGenerator.ChunkStore;
|
||||
import world.bentobox.boxed.generators.AbstractBoxedChunkGenerator.EntityData;
|
||||
import world.bentobox.boxed.generators.chunks.AbstractBoxedChunkGenerator.ChestData;
|
||||
import world.bentobox.boxed.generators.chunks.AbstractBoxedChunkGenerator.ChunkStore;
|
||||
import world.bentobox.boxed.generators.chunks.AbstractBoxedChunkGenerator.EntityData;
|
||||
|
||||
/**
|
||||
* Chunk generator for all environments
|
@ -1,4 +1,4 @@
|
||||
package world.bentobox.boxed.generators;
|
||||
package world.bentobox.boxed.generators.chunks;
|
||||
|
||||
import java.util.List;
|
||||
|
@ -0,0 +1,5 @@
|
||||
/**
|
||||
* @author tastybento
|
||||
*
|
||||
*/
|
||||
package world.bentobox.boxed.generators.chunks;
|
Loading…
Reference in New Issue
Block a user