Lioncash 071b2c8e6a [Android] Document a large amount of the Android front-end classes (also some methods).
Also adjusted the tab indentation of the GPL waiver method, was one tab too far.
2013-11-02 23:15:56 -04:00

15 lines
303 B
Java

package com.retroarch.browser;
/**
* Helper class which calls into JNI for various tasks.
*/
public final class NativeInterface {
static {
System.loadLibrary("retroarch-jni");
}
public static native boolean extractArchiveTo(String archive,
String subDirectory, String destinationFolder);
}