feat: routes, clickable erika, kill sound
release-tag / release-image (push) Successful in 1m0s

This commit is contained in:
2024-05-12 12:03:33 +02:00
parent 4dc370de12
commit d59da50ed1
8 changed files with 115 additions and 58 deletions
+4
View File
@@ -0,0 +1,4 @@
export function playSound(soundUrl: string): void {
const audio = new Audio(soundUrl);
audio.play();
}