HighscoreEntry

data class HighscoreEntry(val rank: Int, val level: Int, val experience: Long)

A data class representing a highscore entry for a specific skill in RuneScape.

This class contains information about a player's rank, level, and experience in a particular skill.

Constructors

Link copied to clipboard
constructor(rank: Int, level: Int, experience: Long)

Properties

Link copied to clipboard

The total experience points the player has in the skill.

Link copied to clipboard
val level: Int

The player's level in the skill.

Link copied to clipboard
val rank: Int

The player's rank in the skill.