7 lines
199 B
Java
7 lines
199 B
Java
package net.minecraft.world.inventory;
|
|
|
|
import net.minecraft.world.entity.player.StackedContents;
|
|
|
|
public interface StackedContentsCompatible {
|
|
void fillStackedContents(StackedContents contents);
|
|
}
|