org.legendofdragoon.scripting.tokens.Data 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 Data extends Entry {
public final int value;
public Data(final int address, final int value) {
super(address);
this.value = value;
}
@Override
public String toString() {
return "data " + this.value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy