twinblade-infinity/scripts/action_sound/action_sound.gml

10 lines
214 B
Plaintext
Raw Normal View History

/// @description (Old DnD) - play sound
/// @param index sound index
/// @param loop true if playing a loop
function action_sound(argument0, argument1) {
audio_play_sound( argument0, 1, argument1 );
}