-
Notifications
You must be signed in to change notification settings - Fork 1
/
HighScore.lua
62 lines (47 loc) · 1.68 KB
/
HighScore.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---@meta
---@class HighScore
HighScore = {}
--- Returns the date and time the high score was achieved.
---@return string
function HighScore:GetDate() end
--- Returns the Grade of this high score.
---@return Grade
function HighScore:GetGrade() end
--- Return the number of HoldNoteScores that match `hns`.
---@param hns HoldNoteScore
---@return integer
function HighScore:GetHoldNoteScore(hns) end
--- Returns the Max Combo of this high score.
---@return integer
function HighScore:GetMaxCombo() end
--- Returns the modifiers used for this HighScore.
---@return string
function HighScore:GetModifiers() end
--- Returns the name associated with the high score.
---@return string
function HighScore:GetName() end
--- Returns the Peak Combo Award for this high score.
---@return PeakComboAward
function HighScore:GetPeakComboAward() end
--- Returns the percentage of dance points associated with the high score.
---@return number
function HighScore:GetPercentDP() end
--- Returns the RadarValues for this HighScore.
---@return RadarValues
function HighScore:GetRadarValues() end
--- Returns the score associated with the high score.
---@return integer
function HighScore:GetScore() end
--- Retrns the Stage Award for this high score.
---@return StageAward
function HighScore:GetStageAward() end
--- Returns the number of seconds survived associated with the high score.
---@return number
function HighScore:GetSurvivalSeconds() end
--- Return the number of TapNoteScores that match `tns`.
---@param tns TapNoteScore
---@return integer
function HighScore:GetTapNoteScore(tns) end
--- Returns `true` if this high score's name uses a fill-in marker.
---@return boolean
function HighScore:IsFillInMarker() end