Files
front/helpers/audioHelpers.ts
T
Erzangel d59da50ed1
release-tag / release-image (push) Successful in 1m0s
feat: routes, clickable erika, kill sound
2024-05-12 12:03:33 +02:00

4 lines
106 B
TypeScript

export function playSound(soundUrl: string): void {
const audio = new Audio(soundUrl);
audio.play();
}