All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ru.cwcode.tkach.refreshmenu.inventory.ingredient.action.SetViewAction Maven / Gradle / Ivy

package ru.cwcode.tkach.refreshmenu.inventory.ingredient.action;

import org.bukkit.event.inventory.ClickType;
import ru.cwcode.tkach.refreshmenu.MenuContext;

public class SetViewAction implements Action {
  String view = "default";
  
  public SetViewAction(String view) {
    this.view = view;
  }
  
  public SetViewAction() {
  }
  
  @Override
  public void accept(MenuContext context, ClickType clickType) {
    context.view().getMenu().openView(context.player(), view);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy