Code/net/minecraft/resources/DependantName.java

10 lines
237 B
Java
Raw Permalink Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.resources;
@FunctionalInterface
public interface DependantName<T, V> {
V get(ResourceKey<T> p_368676_);
static <T, V> DependantName<T, V> fixed(V p_363313_) {
return p_365225_ -> p_363313_;
}
}