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

@@ -39,6 +39,7 @@ class InternalClient {
this.channels = new Cache();
this.servers = new Cache();
this.private_channels = new Cache();
this.voiceConnections = new Cache();
this.resolver = new Resolver(this);
}
// def createServer

View File

@@ -0,0 +1,9 @@
"use strict";
class VoiceConnection{
constructor(){
}
}
module.exports = VoiceConnection;