mirror of
https://github.com/danbulant/discord.js
synced 2026-05-25 13:02:38 +00:00
Created voice channel class
This commit is contained in:
parent
2c9c961b8e
commit
30b96ef5fc
1 changed files with 11 additions and 0 deletions
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);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Reference in a new issue