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

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

There is a newer version: 0.5.6
Show newest version
package org.legendofdragoon.scripting.tokens;

public class Entrypoint extends Entry {
  public final String destination;

  public Entrypoint(final int address, final String destination) {
    super(address);
    this.destination = destination;
  }

  @Override
  public String toString() {
    return "entrypoint " + this.destination;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy