24 lines
602 B
Lua
24 lines
602 B
Lua
-- Global downloadscreen `dlScreen` table
|
|
---@class dlScreen
|
|
dlScreen = {
|
|
}
|
|
|
|
-- Download the selected song
|
|
---@param uri string # Encoded URI
|
|
---@param header table
|
|
---@param id string # Song ID
|
|
---@param cb function # Archive callback
|
|
dlScreen.DownloadArchive = function(uri, header, id, cb) end
|
|
|
|
-- Exit the download screen
|
|
dlScreen.Exit = function() end
|
|
|
|
-- Gets the path to the song folder
|
|
dlScreen.GetSongsPath = function() end
|
|
|
|
-- Play the chart preview
|
|
---@param uri string # Encoded URI
|
|
---@param header table
|
|
---@param id string # Song ID
|
|
dlScreen.PlayPreview = function(uri, header, id) end
|