Fixed smallish bugs

This commit is contained in:
hydrabolt
2015-11-06 21:36:58 +00:00
parent cb5452f072
commit 4118252ace
6 changed files with 60 additions and 55 deletions

View File

@@ -1,8 +1,17 @@
"use strict";
var WebSocket = require("ws");
var dgram = require("dgram");
class VoiceConnection{
constructor(){
constructor(channel, client, session, token, server, endpoint){
this.voiceChannel = channel;
this.client = client;
this.session = session;
this.token = token;
this.server = server;
this.endpoint = endpoint;
console.log("I was instantiated!");
}
}