tcr/java/src/game/command/Executable.java

12 lines
250 B
Java
Raw Normal View History

2025-03-11 00:23:54 +01:00
package game.command;
2025-03-19 21:54:09 +01:00
import java.util.List;
2025-03-11 00:23:54 +01:00
import java.util.Map;
public interface Executable {
2025-03-19 21:54:09 +01:00
// Object exec(ScriptEnvironment env, ScriptArgs args);
2025-03-11 00:23:54 +01:00
Map<String, Parameter> getParameters();
2025-03-19 21:54:09 +01:00
List<Parameter> getParamList();
2025-03-11 00:23:54 +01:00
String getName();
}