forked from SteamWar/AdvancedScripts
Add basic Script visualization and colorization
This commit is contained in:
@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user