package io.gitlab.jfronny.modsmod; import me.sargunvohra.mcmods.autoconfig1u.ConfigData; import me.sargunvohra.mcmods.autoconfig1u.annotation.Config; import me.sargunvohra.mcmods.autoconfig1u.annotation.ConfigEntry.Gui.RequiresRestart; import me.sargunvohra.mcmods.autoconfig1u.shadowed.blue.endless.jankson.Comment; @Config(name = "ModsMod") public class Cfg implements ConfigData { @Comment("The amount of mods to generate. Don't set this too high") @RequiresRestart public int modsCount = 263; @Comment("Show the mods as children of ModsMod in ModMenu. Might also hide from mod count") @RequiresRestart public boolean parent = false; @Comment("Cache the generated files. Increases performance. Disable when this stops working to regenerate") public boolean cache = true; }