Code/net/minecraft/util/datafix/schemas/V2707.java

19 lines
614 B
Java
Raw Permalink Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.util.datafix.schemas;
import com.mojang.datafixers.schemas.Schema;
import com.mojang.datafixers.types.templates.TypeTemplate;
import java.util.Map;
import java.util.function.Supplier;
public class V2707 extends NamespacedSchema {
public V2707(int p_145894_, Schema p_145895_) {
super(p_145894_, p_145895_);
}
@Override
public Map<String, Supplier<TypeTemplate>> registerEntities(Schema p_145903_) {
Map<String, Supplier<TypeTemplate>> map = super.registerEntities(p_145903_);
this.registerSimple(map, "minecraft:marker");
return map;
}
}