18 lines
283 B
Haxe
18 lines
283 B
Haxe
package helpers;
|
|
|
|
|
|
import sys.io.File;
|
|
|
|
|
|
class JavaHelper {
|
|
|
|
|
|
public static function copyLibraries (templatePaths:Array <String>, platformName:String, targetPath:String) {
|
|
|
|
FileHelper.recursiveCopyTemplate (templatePaths, "java/ndll/" + platformName, targetPath);
|
|
|
|
}
|
|
|
|
|
|
}
|