org.legendofdragoon.scripting.StringInfo 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;
public class StringInfo {
public final int start;
public int maxLength;
public StringInfo(final int start, final int maxLength) {
this.start = start;
this.maxLength = maxLength;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy