mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-12-26 02:29:14 +00:00
19 lines
398 B
Java
19 lines
398 B
Java
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;
|
|
}
|
|
}
|