org.legendofdragoon.scripting.tokens.Entry 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 abstract class Entry {
public final int address;
protected Entry(final int address) {
this.address = address;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy