Created voice channel class

This commit is contained in:
hydrabolt
2015-10-27 16:55:24 +00:00
parent 2c9c961b8e
commit 30b96ef5fc

11
src/VoiceChannel.js Normal file
View File

@@ -0,0 +1,11 @@
var Channel = require("./channel.js");
class VoiceChannel extends Channel{
constructor(data, server){
super(data, server);
}
}