File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
velocity/src/main/java/cz/foresttech/commandapi/velocity Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ compileJava.options.encoding = "UTF-8"
77compileTestJava. options. encoding = " UTF-8"
88
99allprojects {
10- version = ' 1.0.2-SNAPSHOT '
10+ version = ' 1.0.2'
1111 group = ' cz.foresttech'
1212
1313 repositories {
Original file line number Diff line number Diff line change 22
33import com .velocitypowered .api .proxy .ProxyServer ;
44
5+ /**
6+ * Interface for providing {@link ProxyServer} instance to ForestCommandAPI methods.
7+ * Main class of the Velocity plugin should implement this interface.
8+ */
59public interface ProxyServerProvider {
610
711 ProxyServer getProxyServer ();
Original file line number Diff line number Diff line change 55
66import java .util .List ;
77
8+ /**
9+ * Support handler for Velocity commands as they do not include specifics about the
10+ * command inside interaction methods.
11+ */
812public class VelocityCommandHandler implements SimpleCommand {
913
1014 private final String commandName ;
You can’t perform that action at this time.
0 commit comments