org.legendofdragoon.scripting.tokens.Entrypoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of script-recompiler Show documentation
Show all versions of script-recompiler Show documentation
Tools for working with Legend of Dragoon scripts
package org.legendofdragoon.scripting.tokens;
public class Entrypoint extends Entry {
public final String destination;
public Entrypoint(final int address, final String destination) {
super(address);
this.destination = destination;
}
@Override
public String toString() {
return "entrypoint " + this.destination;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy