Added support for custom ModuleBase command contexts. Added SocketCommandContext/RpcCommandContext.

This commit is contained in:
RogueException
2016-12-23 16:52:32 -04:00
parent 1965c0539a
commit 2c075e186a
32 changed files with 138 additions and 53 deletions

View File

@@ -0,0 +1,11 @@
namespace Discord.Commands
{
public interface ICommandContext
{
IDiscordClient Client { get; }
IGuild Guild { get; }
IMessageChannel Channel { get; }
IUser User { get; }
IUserMessage Message { get; }
}
}