2025-11-24 22:52:51 +03:00

24 lines
837 B
Java

/*
* Decompiled with CFR 0.152.
*/
package net.minecraft.data.worldgen;
import net.minecraft.data.worldgen.BootstrapContext;
import net.minecraft.data.worldgen.DesertVillagePools;
import net.minecraft.data.worldgen.PlainVillagePools;
import net.minecraft.data.worldgen.SavannaVillagePools;
import net.minecraft.data.worldgen.SnowyVillagePools;
import net.minecraft.data.worldgen.TaigaVillagePools;
import net.minecraft.world.level.levelgen.structure.pools.StructureTemplatePool;
public class VillagePools {
public static void bootstrap(BootstrapContext<StructureTemplatePool> context) {
PlainVillagePools.bootstrap(context);
SnowyVillagePools.bootstrap(context);
SavannaVillagePools.bootstrap(context);
DesertVillagePools.bootstrap(context);
TaigaVillagePools.bootstrap(context);
}
}