ModMenu Integration
Adding ModMenu with Gradle
dependencies {
[...]
modApi "com.terraformersmc:modmenu:ABC"
}Creating the ModMenu entrypoint
public class ExampleModMenuIntegration implements ModMenuApi {
}public class ExampleModMenuIntegration implements ModMenuApi {
[...]
@Override
public ConfigScreenFactory<?> getModConfigScreenFactory() {
return parent -> {
// Return the screen here with the one you created from Cloth Config Builder
};
}
}Last updated