Add basic Script visualization and colorization

This commit is contained in:
yoyosource
2022-12-25 00:12:55 +01:00
parent 24aa6e5c3c
commit cf06c30b54
15 changed files with 616 additions and 1 deletions

View File

@ -0,0 +1,13 @@
package de.zonlykroks.advancedscripts.lexer;
import java.util.List;
public class Command {
public final boolean repeatable;
public final List<List<TokenType>> arguments;
public Command(boolean repeatable, List<List<TokenType>> arguments) {
this.repeatable = repeatable;
this.arguments = arguments;
}
}