package net.knarcraft.minigames.arena; 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
*/ void triggerQuit(boolean immediately); /** * Gets the arena this session is being played in * * @returnThe session's arena
*/ @NotNull Arena getArena(); }