package de.zonlykroks.advancedscripts.lexer; import java.util.List; public class Command { public final boolean repeatable; public final List> arguments; public Command(boolean repeatable, List> arguments) { this.repeatable = repeatable; this.arguments = arguments; } }