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

8 lines
239 B
Java

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