Description
What is Simple Mod Config
Simple Config is a minecraft configuration library.
This helps minecraft mod developers easily create a configs in minecraft.
This mod is built with no modding platform in mind. Meaning it can be integrated in
**_Forge_**,
**_Fabric_**,
**_Quilt_**,
and any other minecraft modding platforms that popup throughout the years.
Table of Contents
Screenshot

Installation
Add the Modrith Maven to your build.gradle file
repositories {
// Add the modrinth maven
maven {
url = "" rel="noopener nofollow" target="_blank">https://api.modrinth.com/maven"
}
}
Then add Simple Mod Config to your dependencies. You can find the right version on our Modrinth page
Common
Add the version to your gradle.properties files
simpleconfig=0.0.1 #put your version here
Fabric, Quilt, Architectury
dependencies {
// Adding a Simple Mod Config dependency for fabric, quilt and architectury
modImplementation include("maven.modrinth:simple-mod-config:${project.simpleconfig}")
}
Forge
dependencies {
// Adding a Simple Mod Config dependency for forge
implementation fg.deobf("maven.modrinth:simple-mod-config:${project.simpleconfig}")
}


