Optimisations

This commit is contained in:
hydrabolt
2015-11-07 18:39:22 +00:00
parent be1f5064c2
commit af8da5b0a2
8 changed files with 229 additions and 74 deletions

11
src/Voice/StreamIntent.js Normal file
View File

@@ -0,0 +1,11 @@
"use strict";
// represents an intent of streaming music
var EventEmitter = require("events");
class StreamIntent extends EventEmitter{
constructor(){
super();
}
}
module.exports = StreamIntent;