2
3
Fork 0

v1 #4

Zusammengeführt
rebillar hat 50 Commits von dev nach master 2023-12-29 21:34:13 +01:00 zusammengeführt
Nur Änderungen aus Commit 9c7b9649c5 werden angezeigt - Alle Commits anzeigen

Datei anzeigen

@ -2,6 +2,7 @@ class Sound{
constructor(url){ constructor(url){
this.sound = new Audio(url); this.sound = new Audio(url);
this.sound.type = "audio/mp3"; this.sound.type = "audio/mp3";
this.sound.volume = 0.2;
} }
play(){ play(){