11 lines
249 B
Plaintext
11 lines
249 B
Plaintext
|
function sound_loop(argument0) {
|
||
|
// ------------------------------------------------------------
|
||
|
/// @description Loops the indicated sound
|
||
|
/// @param index The index of the sound to loop
|
||
|
|
||
|
audio_play_sound( argument0, 10, true );
|
||
|
|
||
|
|
||
|
|
||
|
}
|