- Ajustat el nombre de versió
- Retocades dos funcions de la llibreria de vscode
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
#pragma once
|
||||
|
||||
#define MINI_VERSION "1.2"
|
||||
#define MINI_VERSION "1.3.6"
|
||||
|
||||
@@ -303,6 +303,11 @@ music = {}
|
||||
---Load and play the song in the specified OGG file
|
||||
function music.play(filename) end
|
||||
|
||||
---@param filename string
|
||||
---@param loop integer
|
||||
---Load and play the song in the specified OGG file, loop number of times
|
||||
function music.play(filename, loop) end
|
||||
|
||||
---Pause the currently playing song
|
||||
function music.pause() end
|
||||
|
||||
@@ -337,6 +342,12 @@ function sound.free(snd) end
|
||||
---Play the sound specified, returns the channel in which it's playing
|
||||
function sound.play(snd) end
|
||||
|
||||
---@param snd number
|
||||
---@param loop integer
|
||||
---@return number chl
|
||||
---Play the sound specified loop number of times, returns the channel in which it's playing
|
||||
function sound.play(snd, loop) end
|
||||
|
||||
---@param chl number
|
||||
---Stop the channel specified
|
||||
function sound.stop(chl) end
|
||||
|
||||
Reference in New Issue
Block a user