v1 #4

Merged
rebillar merged 50 commits from dev into master 2023-12-29 21:34:13 +01:00
Showing only changes of commit 9c7b9649c5 - Show all commits

View file

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