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 * * @return

The name of this arena

*/ @NotNull String getArenaName(); /** * Gets this arena's sanitized name * * @return

This arena's sanitized name

*/ @NotNull String getArenaNameSanitized(); }