11 lines
234 B
Plaintext
11 lines
234 B
Plaintext
|
function sound_stop(argument0) {
|
||
|
// ------------------------------------------------------------
|
||
|
/// @description Stops a given sound.
|
||
|
/// @param index The index of the sound to stop
|
||
|
|
||
|
audio_stop_sound( argument0 );
|
||
|
|
||
|
|
||
|
|
||
|
}
|