Code/net/minecraft/world/inventory/MenuConstructor.java

11 lines
336 B
Java
Raw Permalink Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.world.inventory;
import javax.annotation.Nullable;
import net.minecraft.world.entity.player.Inventory;
import net.minecraft.world.entity.player.Player;
@FunctionalInterface
public interface MenuConstructor {
@Nullable
AbstractContainerMenu createMenu(int p_39954_, Inventory p_39955_, Player p_39956_);
}