package net.knarcraft.minigames.arena; import org.bukkit.Location; import org.bukkit.configuration.serialization.ConfigurationSerializable; import org.bukkit.entity.Player; import java.util.UUID; /** * The stored state of a player */ public interface PlayerEntryState extends ConfigurationSerializable { /** * Sets the state of the stored player to the state used by the arena */ void setArenaState(); /** * Restores the stored state for the stored player */ boolean restore(); /** * Restores the stored state for the given player * * @param player
A player object that's refers to the same player as the stored player
*/ void restore(Player player); /** * Gets the id of the player this state belongs to * * @returnThe player the state belongs to
*/ UUID getPlayerId(); /** * Gets the location the player entered from * * @returnThe location the player entered from
*/ Location getEntryLocation(); }