Implemented command type readers, parser and service.

This commit is contained in:
RogueException
2016-06-26 03:35:40 -03:00
parent d934a5a1eb
commit f59b6b9004
19 changed files with 775 additions and 42 deletions

View File

@@ -0,0 +1,20 @@
namespace Discord.Commands
{
public enum CommandError
{
//Search
UnknownCommand,
//Parse
ParseFailed,
BadArgCount,
//Parse (Type Reader)
CastFailed,
ObjectNotFound,
MultipleMatches,
//Execute
Exception,
}
}