pvbemu/src/desktop/vue/NativeVUE.java

14 lines
234 B
Java

package vue;
// Native-backed emulation core implementation
class NativeVUE extends VUE {
// Retrieve the implementation's name
public String getName() {
return "Native";
}
native int test(int x, int y);
}