Simple Mod Config
Simple Mod Config is a specialized configuration library for Minecraft. This tool significantly simplifies the process of creating configuration files for mod developers, offering an intuitive and universal approach.
Key Features
The library is designed with cross-platform compatibility in mind and can be integrated into various modding platforms, including Forge, Fabric, Quilt, and other existing or future Minecraft modding platforms.
Installation
To get started, you need to add the Modrinth Maven repository to your build.gradle file:
repositories {
// Add the Modrinth Maven repository
maven {
url = "https://api.modrinth.com/maven"
}
}
Then add Simple Mod Config to your project dependencies. The current version can be found on the mod's corresponding page.
Version Configuration
Specify the version in the gradle.properties file:
# Simple Mod Config Version
simpleconfig=0.0.1 # put your version here
Dependencies for Different Platforms
For Fabric, Quilt and Architectury:
dependencies {
// Adding a Simple Mod Config dependency for Fabric, Quilt and Architectury
modImplementation include("maven.modrinth:simple-mod-config:fabric-${project.simpleconfig}")
}
For Forge:
dependencies {
// Adding a Simple Mod Config dependency for Forge
modImplementation include("maven.modrinth:simple-mod-config:forge-${project.simpleconfig}")
}