begin brigadier support, arguments aren't supported yet

This commit is contained in:
Taah
2023-07-07 22:14:56 -07:00
parent ffbad7928a
commit 33195260a1
11 changed files with 586 additions and 8 deletions

View File

@ -0,0 +1,19 @@
package dev.plex.command.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* @author Taah
* @project Plex
* @since 4:46 PM [07-07-2023]
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface SubCommand
{
String value();
}