2021-10-09 15:21:32 +02:00
|
|
|
package io.gitlab.jfronny.modsmod;
|
|
|
|
|
2022-08-28 16:47:28 +02:00
|
|
|
import io.gitlab.jfronny.libjf.config.api.v1.JfConfig;
|
|
|
|
import io.gitlab.jfronny.libjf.config.api.v1.Entry;
|
2021-10-09 15:21:32 +02:00
|
|
|
|
2022-08-28 16:47:28 +02:00
|
|
|
@JfConfig
|
|
|
|
public class ModsModConfig {
|
|
|
|
@Entry public static boolean parent = false;
|
|
|
|
@Entry public static boolean cache = true;
|
|
|
|
@Entry public static int modsCount = 26;
|
2021-10-09 15:21:32 +02:00
|
|
|
}
|