-
Notifications
You must be signed in to change notification settings - Fork 1
/
CouseEntry.lua
29 lines (27 loc) · 1 KB
/
CouseEntry.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
---@meta
---@class CourseEntry CourseEntry
CourseEntry = {}
---Returns the Song that this CourseEntry corresponds to.
---@return SongObject
function CourseEntry:GetSong() end
---Returns the number of lives gained after completing the song.
---@return integer
function CourseEntry:GetGainLives() end
---Returns the number of seconds gained after completing the song.
---@return number
function CourseEntry:GetGainSeconds() end
---Returns any stage (non-timed) modifiers.
---@return string
function CourseEntry:GetNormalModifiers() end
---Returns the number of modifier changes in this CourseEntry.
---@return integer
function CourseEntry:GetNumModChanges() end
---Returns a comma-delimited string representing various facts about the CourseEntry.
---@return string
function CourseEntry:GetTextDescription() end
---Returns `true` if this CourseEntry is a fixed song.
---@return boolean
function CourseEntry:IsFixedSong() end
---Returns `true` if this CourseEntry is secret.
---@return boolean
function CourseEntry:IsSecret() end