2013-09-21 06:53:11 +00:00
|
|
|
package biomesoplenty.configuration;
|
|
|
|
|
|
|
|
import net.minecraft.world.gen.structure.MapGenStructureIO;
|
2013-09-21 07:04:41 +00:00
|
|
|
import biomesoplenty.worldgen.structure.BOPStructureScatteredFeatureStart;
|
2013-09-21 06:53:11 +00:00
|
|
|
import biomesoplenty.worldgen.structure.BOPStructureVillageStart;
|
|
|
|
|
|
|
|
public class BOPStructures
|
|
|
|
{
|
|
|
|
public static void init()
|
|
|
|
{
|
2013-09-21 08:58:50 +00:00
|
|
|
MapGenStructureIO.func_143034_b(BOPStructureVillageStart.class, "BOPVillage");
|
2013-09-21 09:48:35 +00:00
|
|
|
MapGenStructureIO.func_143034_b(BOPStructureScatteredFeatureStart.class, "BOPTemple");
|
2013-09-21 06:53:11 +00:00
|
|
|
}
|
|
|
|
}
|