10 lines
315 B
Java
10 lines
315 B
Java
package net.minecraft.data.loot;
|
|
|
|
import java.util.function.BiConsumer;
|
|
import net.minecraft.resources.ResourceKey;
|
|
import net.minecraft.world.level.storage.loot.LootTable;
|
|
|
|
@FunctionalInterface
|
|
public interface LootTableSubProvider {
|
|
void generate(BiConsumer<ResourceKey<LootTable>, LootTable.Builder> output);
|
|
}
|