command completion

This commit is contained in:
Sen 2025-03-26 13:27:17 +01:00
parent 4a3828e310
commit e88958e2f4
16 changed files with 66 additions and 51 deletions

View file

@ -1,5 +1,7 @@
package game.command;
import java.util.Collection;
public interface StringCompleter {
String[] complete(CommandEnvironment env);
Collection<String> complete(CommandEnvironment env);
}