Finished most of structure

This commit is contained in:
hydrabolt
2015-10-31 21:56:13 +00:00
parent c5e5ab54db
commit 5ccaca915b
23 changed files with 323 additions and 70 deletions

View File

@@ -1,8 +1,8 @@
"use strict";
var Channel = require("./Channel.js");
var ServerChannel = require("./ServerChannel.js");
class VoiceChannel extends Channel{
class VoiceChannel extends ServerChannel{
constructor(data, client){
super(data, client);
}