mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
Started basic work on voice
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
9
lib/Voice/VoiceConnection.js
Normal file
9
lib/Voice/VoiceConnection.js
Normal 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;
|
||||
Reference in New Issue
Block a user