package net.knarcraft.minigames.arena; import net.knarcraft.minigames.gui.ArenaGUI; import org.jetbrains.annotations.NotNull; /** * A player's session while in an arena */ public interface ArenaSession { /** * Gets the state of the player when they joined the session * * @return
The player's entry state
*/ @NotNull PlayerEntryState getEntryState(); /** * Triggers a win for the player playing in this session */ void triggerWin(); /** * Triggers a loss for the player playing in this session */ void triggerLoss(); /** * Triggers a quit for the player playing in this session * * @param immediatelyWhether to to the teleportation immediately, not using any timers
* @param removeSessionWhether to also remove the session. Should usually be true.
*/ void triggerQuit(boolean immediately, boolean removeSession); /** * Gets the arena this session is being played in * * @returnThe session's arena
*/ @NotNull Arena getArena(); /** * Gets the GUI with this arena's options * * @returnThis arena's GUI
*/ @NotNull ArenaGUI getGUI(); /** * Resets the session to allow a player to try again */ void reset(); }