Archived
0

реализация CommandService

This commit is contained in:
2020-05-06 13:37:14 +03:00
parent b1efb13b05
commit fba59bb009
6 changed files with 94 additions and 66 deletions

View File

@@ -0,0 +1,8 @@
package mc.server.shell;
import org.jline.builtins.Builtins;
public interface Command {
void execute(Builtins.CommandInput commandInput);
}