Interface ScreenHandlerRegistry.ExtendedClientHandlerFactory<T extends net.minecraft.screen.ScreenHandler>

Type Parameters:
T - the screen handler type
Enclosing class:
ScreenHandlerRegistry

public static interface ScreenHandlerRegistry.ExtendedClientHandlerFactory<T extends net.minecraft.screen.ScreenHandler>
A factory for client-sided screen handler instances with additional screen opening data.
See Also:
ExtendedScreenHandlerFactory
  • Method Summary

    Modifier and Type
    Method
    Description
    create​(int syncId, net.minecraft.entity.player.PlayerInventory inventory, net.minecraft.network.PacketByteBuf buf)
    Creates a new client-sided screen handler with additional screen opening data.
  • Method Details

    • create

      @Environment(CLIENT) T create(int syncId, net.minecraft.entity.player.PlayerInventory inventory, net.minecraft.network.PacketByteBuf buf)
      Creates a new client-sided screen handler with additional screen opening data.
      Parameters:
      syncId - the synchronization ID
      inventory - the player inventory
      buf - the packet buffer
      Returns:
      the created screen handler