Add basic Script visualization and colorization
This commit is contained in:
@ -0,0 +1,13 @@
|
||||
package de.zonlykroks.advancedscripts.lexer;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
public class Commands {
|
||||
|
||||
private Commands() {
|
||||
throw new IllegalStateException("Utility class");
|
||||
}
|
||||
|
||||
public static Map<String, Command> COMMANDS = new HashMap<>();
|
||||
}
|
||||
Reference in New Issue
Block a user