All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.legendofdragoon.scripting.StringInfo Maven / Gradle / Ivy

There is a newer version: 0.5.6
Show newest version
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