minecraft-src/net/minecraft/world/inventory/MenuConstructor.java
2025-07-04 01:41:11 +03:00

11 lines
332 B
Java

package net.minecraft.world.inventory;
import net.minecraft.world.entity.player.Inventory;
import net.minecraft.world.entity.player.Player;
import org.jetbrains.annotations.Nullable;
@FunctionalInterface
public interface MenuConstructor {
@Nullable
AbstractContainerMenu createMenu(int i, Inventory inventory, Player player);
}