You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/com/devkev/devscript/nativecommands/NativeLibrary.java
+18-7Lines changed: 18 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1040,18 +1040,28 @@ public Object execute(Object[] args, Process application, Block block) throws Ex
1040
1040
}
1041
1041
},
1042
1042
1043
-
newCommand("import", "string", "Imports a library from a compiled .jar file. The class should extend com.mygdx.devkev.devscript.raw.Library and be named CustomLibrary\n"
1044
-
+ "You can use a * to reference the current path the process is executed in (*/library.jar") {
1043
+
newCommand("import", "string", "Imports a library from a compiled .jar file. The class should extend com.mygdx.devkev.devscript.raw.Library. If the path starts with * it looks in the current folder of the script file") {
0 commit comments