ludum-dare-21/scripts/action_sound/action_sound.gml

10 lines
214 B
Plaintext
Raw Normal View History

2021-06-16 23:23:00 -07:00
/// @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 );
}