package net.minecraft.data.loot.packs; import java.util.List; import java.util.Set; import java.util.concurrent.CompletableFuture; import net.minecraft.core.HolderLookup; import net.minecraft.data.PackOutput; import net.minecraft.data.loot.LootTableProvider; import net.minecraft.world.level.storage.loot.parameters.LootContextParamSets; public class WinterDropLootTableProvider { public static LootTableProvider create(PackOutput packOutput, CompletableFuture completableFuture) { return new LootTableProvider( packOutput, Set.of(), List.of(new LootTableProvider.SubProviderEntry(WinterDropBlockLoot::new, LootContextParamSets.BLOCK)), completableFuture ); } }