package net.knarcraft.minigames.arena; import org.jetbrains.annotations.NotNull; import java.util.UUID; /** * An interface describing all arenas */ public interface Arena { /** * Gets the id of this arena * * @return
This arena's identifier
*/ @NotNull UUID getArenaId(); /** * Gets the name of this arena * * @returnThe name of this arena
*/ @NotNull String getArenaName(); /** * Gets this arena's sanitized name * * @returnThis arena's sanitized name
*/ @NotNull String getArenaNameSanitized(); }