minecraft-src/net/minecraft/world/inventory/StackedContentsCompatible.java
2025-07-04 02:49:36 +03:00

8 lines
235 B
Java

package net.minecraft.world.inventory;
import net.minecraft.world.entity.player.StackedItemContents;
@FunctionalInterface
public interface StackedContentsCompatible {
void fillStackedContents(StackedItemContents stackedContents);
}