VillagePools.java

net.minecraft.data.worldgen.VillagePools

信息

  • 全限定名:net.minecraft.data.worldgen.VillagePools
  • 类型:public class
  • 包:net.minecraft.data.worldgen
  • 源码路径:src/main/java/net/minecraft/data/worldgen/VillagePools.java
  • 起始行号:L5
  • 职责:

    TODO

字段/常量

内部类/嵌套类型

构造器

方法

下面的方法块按源码顺序生成。

public static void bootstrap(BootstrapContext<StructureTemplatePool> context) @ L6

  • 方法名:bootstrap
  • 源码定位:L6
  • 返回类型:void
  • 修饰符:public static

参数:

  • context: BootstrapContext

说明:

TODO

代码

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);
    }
}

引用的其他类