QuickMath/src/main/java/io/gitlab/jfronny/quickmeth/Cfg.java

18 lines
505 B
Java
Raw Normal View History

2020-08-07 11:02:13 +02:00
package io.gitlab.jfronny.quickmeth;
2021-10-09 14:13:15 +02:00
import io.gitlab.jfronny.libjf.config.api.Entry;
import io.gitlab.jfronny.libjf.config.api.JfConfig;
2020-08-07 11:02:13 +02:00
2021-05-19 15:12:49 +02:00
public class Cfg implements JfConfig {
@Entry
2021-10-09 14:13:15 +02:00
public static Boolean corruptGenericMath = true;
2021-05-19 15:12:49 +02:00
@Entry
2021-10-19 21:29:57 +02:00
public static Boolean corruptTrigonometry = true;
@Entry
2021-10-09 14:13:15 +02:00
public static Boolean corruptGenericMath2 = false;
2021-05-29 15:54:38 +02:00
@Entry
2021-10-09 14:13:15 +02:00
public static Boolean corruptPerlinNoise = true;
2021-05-19 15:12:49 +02:00
@Entry
2021-10-09 14:13:15 +02:00
public static Boolean corruptSimplexNoise = true;
2020-08-07 11:02:13 +02:00
}