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

org.legendofdragoon.scripting.tokens.Data Maven / Gradle / Ivy

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