mirror of
https://github.com/Chaoscaot/schemsearch.git
synced 2025-11-04 21:54:00 +01:00
9 lines
204 B
Java
9 lines
204 B
Java
public class SchemSearch {
|
|
|
|
public static native String search(String schematicFile, String patternFile);
|
|
|
|
public static void init(String filePath) {
|
|
System.loadLibrary(filePath);
|
|
}
|
|
}
|