Started basic work on voice

This commit is contained in:
hydrabolt
2015-11-06 20:46:11 +00:00
parent ac3608feb4
commit bd0228bc71
4 changed files with 20 additions and 0 deletions

View File

@@ -43,6 +43,7 @@ var InternalClient = (function () {
this.channels = new Cache();
this.servers = new Cache();
this.private_channels = new Cache();
this.voiceConnections = new Cache();
this.resolver = new Resolver(this);
}

View File

@@ -0,0 +1,9 @@
"use strict";
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
var VoiceConnection = function VoiceConnection() {
_classCallCheck(this, VoiceConnection);
};
module.exports = VoiceConnection;