de.placeblock.betterinventories.gui.PlayerGUI 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;
/**
* Can be used to mark a GUI as a player-specific-GUI
* @param The type of the Player
*/
@SuppressWarnings("unused")
public interface PlayerGUI
{
/**
* @return The player
*/
P getPlayer();
}