Added IDisposable to IAudioClient

This commit is contained in:
RogueException
2016-12-30 17:06:15 -04:00
parent f4469a76be
commit 082ddc616c

View File

@@ -4,7 +4,7 @@ using System.Threading.Tasks;
namespace Discord.Audio namespace Discord.Audio
{ {
public interface IAudioClient public interface IAudioClient : IDisposable
{ {
event Func<Task> Connected; event Func<Task> Connected;
event Func<Exception, Task> Disconnected; event Func<Exception, Task> Disconnected;