package net.minecraft.resources; @FunctionalInterface public interface DependantName { V get(ResourceKey resourceKey); static DependantName fixed(V object) { return resourceKey -> object; } }