Compatibility
Minecraft: Java Edition
1.21–1.21.1
Platforms
Supported environments
Creators
Details
Licensed LGPL-3.0-only
Published 4 days ago
Updated 5 days ago
Bento Config
A declarative configuration system built on top of Bento GUI. Simply declare your options in a class file, progressively enhance them with annotations, and then optionally register it to Modmenu!
public class TestConfig extends BentoConfig<TestConfig> {
public boolean spawn_creepers = true;
@Range(min = 1, max = 10)
public int spawn_amount = 3;
@Percentage
public float spawn_chance = 0.5f;
public Item creeper_loot = Items.GUNPOWDER;
@Regex("[a-z]{1,10}")
public String creeper_name = "creeper";
}



