9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-26 02:29:14 +00:00

Adapt for 1.14

This commit is contained in:
Daniel Mills
2019-10-16 07:26:17 -04:00
parent b29ad7ed0c
commit d72518207e
15 changed files with 658 additions and 511 deletions

View File

@@ -0,0 +1,18 @@
package ninja.bytecode.iris;
public class Settings
{
public PerformanceSettings performance = new PerformanceSettings();
public GeneratorSettings gen = new GeneratorSettings();
public static class PerformanceSettings
{
public int threadCount = -1;
public int threadPriority = Thread.MAX_PRIORITY;
}
public static class GeneratorSettings
{
public boolean flatBedrock = false;
}
}