Class SimpleButton

java.lang.Object
me.hsgamer.hscore.minecraft.gui.button.SimpleButton
All Implemented Interfaces:
Function<@NotNull InventoryContext,@NotNull ActionItem>
Direct Known Subclasses:
AirButton

public class SimpleButton extends Object implements Function<@NotNull InventoryContext,@NotNull ActionItem>
A simple button
  • Constructor Details

    • SimpleButton

      public SimpleButton(@NotNull @NotNull Function<@NotNull UUID,@Nullable Object> itemFunction, @NotNull @NotNull Consumer<@NotNull ClickEvent> consumer)
      Create a new simple button
      Parameters:
      itemFunction - the item function
      consumer - the consumer
    • SimpleButton

      public SimpleButton(@Nullable @Nullable Object item, @NotNull @NotNull Consumer<@NotNull ClickEvent> consumer)
      Create a new button
      Parameters:
      item - the item
      consumer - the consumer
    • SimpleButton

      public SimpleButton(@NotNull @NotNull Consumer<@NotNull ClickEvent> consumer)
      Create a new button with a null item
      Parameters:
      consumer - the consumer
    • SimpleButton

      public SimpleButton(@NotNull @NotNull Function<@NotNull UUID,@Nullable Object> itemFunction)
      Create a new button
      Parameters:
      itemFunction - the item function
    • SimpleButton

      public SimpleButton(@Nullable @Nullable Object item)
      Create a new button
      Parameters:
      item - the item
  • Method Details