org.legendofdragoon.scripting.tokens.PointerTable 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;
import java.util.Arrays;
public class PointerTable extends Entry {
public String[] labels;
public PointerTable(final int address, final String[] labels) {
super(address);
this.labels = labels;
}
@Override
public String toString() {
return "rel %x :%s".formatted(this.address, Arrays.toString(this.labels));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy