mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 00:23:30 +01:00
Created voice channel class
This commit is contained in:
11
src/VoiceChannel.js
Normal file
11
src/VoiceChannel.js
Normal file
@@ -0,0 +1,11 @@
|
||||
var Channel = require("./channel.js");
|
||||
|
||||
class VoiceChannel extends Channel{
|
||||
|
||||
constructor(data, server){
|
||||
|
||||
super(data, server);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user