de.placeblock.betterinventories.gui.GUIAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of BetterInventories Show documentation
Show all versions of BetterInventories Show documentation
Easy to use and extensive InventoryAPI for Spigot
package de.placeblock.betterinventories.gui;
/**
* Represents a GUI action.
* Currently, for internal use only.
*/
public enum GUIAction {
/**
* Action when an item is added to an empty slot
*/
ADD,
/**
* Action when an item is removed from a slot
*/
REMOVE,
/**
* Action when the amount in a slot changes
*/
AMOUNT
}