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:
18
src/main/java/ninja/bytecode/iris/Settings.java
Normal file
18
src/main/java/ninja/bytecode/iris/Settings.java
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user