Promote CommandInvocation#alias

This commit is contained in:
Andrew Steinborn
2020-11-05 19:23:26 -05:00
parent 807c67ea3a
commit 02ad6b7e01

View File

@@ -20,4 +20,11 @@ public interface CommandInvocation<T> {
* @return the command arguments
*/
T arguments();
/**
* Returns the alias used to invoke the command.
*
* @return the command used to invoke the command.
*/
String alias();
}