Code/net/minecraft/world/level/storage/loot/LootContextUser.java

14 lines
355 B
Java

package net.minecraft.world.level.storage.loot;
import java.util.Set;
import net.minecraft.util.context.ContextKey;
public interface LootContextUser {
default Set<ContextKey<?>> getReferencedContextParams() {
return Set.of();
}
default void validate(ValidationContext p_79022_) {
p_79022_.validateContextUsage(this);
}
}