Massive amount of bugfixes / Multi-liquid support / Broken build

This commit is contained in:
Anuken
2018-07-06 23:24:14 -04:00
parent 64f1fbe400
commit d988bb1821
74 changed files with 633 additions and 511 deletions

View File

@@ -0,0 +1,17 @@
package io.anuke.mindustry;
import io.anuke.ucore.util.Log;
import java.io.File;
import java.nio.file.Paths;
public class BundleLauncher {
public static void main(String[] args){
File file = new File("bundle.properties");
Paths.get("").forEach(child -> {
Log.info("Directory: {0}", child);
});
}
}