libicsneo/examples/java/src/Run.java

11 lines
220 B
Java

public class Run {
static {
System.loadLibrary("icsneojava");
}
public static void main(String[] args) {
InteractiveExample example = new InteractiveExample();
example.run();
}
}