Skip to content

Commit 4c2b7b3

Browse files
Added NoAudioSound class that extends EventEmitter
1 parent 732cb55 commit 4c2b7b3

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

src/sound/noaudio/NoAudioSound.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
var Class = require('../../utils/Class');
2+
var EventEmitter = require('eventemitter3');
3+
var NoAudioSound = new Class({
4+
Extends: EventEmitter,
5+
initialize: function NoAudioSound(manager, key, config) {
6+
EventEmitter.call(this);
7+
}
8+
});
9+
module.exports = NoAudioSound;

0 commit comments

Comments
 (0)