first commit

This commit is contained in:
kento2 2026-04-14 22:28:42 +02:00
parent 72da8e063b
commit 76784dba7e
20 changed files with 588 additions and 0 deletions

View file

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