initial commit

This commit is contained in:
Sen 2025-03-11 00:23:54 +01:00 committed by Sen
parent 3c9ee26b06
commit 22186c33b9
1458 changed files with 282792 additions and 0 deletions

View file

@ -0,0 +1,33 @@
package game.command;
import java.util.Map;
public class ScriptArg {
private final Parameter parameter;
private final int position;
private final String[] inputs;
private final Map<String, Object> values;
public ScriptArg(Parameter parameter, int position, String[] inputs, Map<String, Object> values) {
this.parameter = parameter;
this.position = position;
this.inputs = inputs;
this.values = values;
}
public Parameter getParameter() {
return this.parameter;
}
public int getPosition() {
return this.position;
}
public String[] getInputs() {
return this.inputs;
}
public Map<String, Object> getValues() {
return this.values;
}
}