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;
public class Token {
public static final Token SPACE = new Token(" ", 0xFFFFFFFF);
public final String text;
public final int color;
public Token(String text, int color) {
this.text = text;
this.color = color;
}
}