This commit is contained in:
kento2 2026-04-15 10:24:26 +02:00
parent 678762f797
commit fc431bf8df
17 changed files with 160 additions and 114 deletions

View file

@ -1,6 +1,6 @@
package de.kencommand.api.processing;
public interface CommandExecutor<S> {
public interface CommandExecutor<T> {
void execute(S ctx);
void execute(CommandContext<T> ctx);
}