This commit is contained in:
kento2 2026-04-14 22:45:11 +02:00
parent b8a2124c80
commit 678762f797
2 changed files with 30 additions and 1 deletions

View file

@ -9,7 +9,7 @@ public interface LiteralNode<T, S extends CommandContext<T>> {
void addLiteral(@NotNull CommandNode<? extends T, ? extends S> commandNode);
CommandNode<? extends T, ? extends S> getLiteral(@NotNull String name);
CommandNode<T, S> getLiteral(@NotNull String name);
@NotNull Set<CommandNode<? extends T, ? extends S>> getLiterals();
}