Initializing mute property to false

This commit is contained in:
Pavle Goloskokovic 2018-01-20 20:00:21 +01:00
parent c5062a0c90
commit 1c6aa693e9

View file

@ -6,6 +6,7 @@ var NoAudioSoundManager = new Class({
EventEmitter.call(this);
this.game = game;
this.sounds = [];
this.mute = false;
}
});
module.exports = NoAudioSoundManager;