This commit is contained in:
Chaoscaot
2023-03-05 15:11:51 +01:00
parent ff03732df5
commit d352bfaded
6 changed files with 64 additions and 4 deletions

8
SchemSearch.java Normal file
View File

@ -0,0 +1,8 @@
public class SchemSearch {
public static native String search(String schematicFile, String patternFile);
public static void init(String filePath) {
System.loadLibrary(filePath);
}
}