Initializing sounds property an empty array

This commit is contained in:
Pavle Goloskokovic 2018-01-20 19:59:54 +01:00
parent e15a5a9c69
commit c5062a0c90

View file

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