2025-03-25 23:10:40 +01:00
|
|
|
package game.command;
|
|
|
|
|
2025-03-26 13:27:17 +01:00
|
|
|
import java.util.Collection;
|
|
|
|
|
2025-03-25 23:10:40 +01:00
|
|
|
public interface StringCompleter {
|
2025-03-26 13:27:17 +01:00
|
|
|
Collection<String> complete(CommandEnvironment env);
|
2025-03-25 23:10:40 +01:00
|
|
|
}
|