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