12 lines
No EOL
239 B
JavaScript
12 lines
No EOL
239 B
JavaScript
class Sound{
|
|
constructor(url){
|
|
this.sound = new Audio(url);
|
|
this.sound.type = "audio/mp3";
|
|
}
|
|
|
|
play(){
|
|
this.shootSound.pause()
|
|
this.shootSound.currentTime=0;
|
|
this.shootSound.play()
|
|
}
|
|
} |