Files
lime/tools/helpers/JavaHelper.hx
2014-12-05 13:05:25 -08:00

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);
}
}