You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
---@seeProfile.GetHighScoreList # to get a HighScoreList object.
---@classHighScoreList
HighScoreList= {}
--- Returns a table of the high scores.
---@returnHighScore[]
functionHighScoreList:GetHighScores() end
--- Returns the highest score for name in the list. Returns nil if there is no score for name in the list.
---@paramnamestring
---@returnHighScore
functionHighScoreList:GetHighestScoreOfName(name) end
--- Returns the rank of the highest score for name in the list. Returns 0 if there is no score for name in the list. (returns 1 if name has the top score, 2 if name has the second place score, and so on)