Interface PlaySfxOptions

Options for playSfx function.

interface PlaySfxOptions {
    audioSource: HTMLAudioElement;
    loop?: boolean;
    volume?: number;
}

Properties

audioSource: HTMLAudioElement
loop?: boolean
volume?: number