6 lines
181 B
Batchfile
6 lines
181 B
Batchfile
|
@echo off
|
||
|
title epkcompiler
|
||
|
echo compiling, please wait...
|
||
|
java -jar CompilePackage.jar "../lwjgl-rundir/resources" "../javascript/assets.epk"
|
||
|
echo finished compiling epk
|
||
|
pause
|