10 lines
203 B
Plaintext
10 lines
203 B
Plaintext
|
/// @description Checks to see if a given sound is playing.
|
||
|
/// @param index sound index
|
||
|
/// @return {boolean}
|
||
|
function sound_isplaying(argument0) {
|
||
|
return audio_is_playing( argument0 );
|
||
|
|
||
|
|
||
|
|
||
|
}
|