We have a basic menu this is half the battle

This commit is contained in:
desyncfy
2024-06-12 21:09:15 -07:00
parent 6908fa9e28
commit 0a2b4d252b
6 changed files with 62 additions and 15 deletions

View File

@@ -14,11 +14,12 @@ base {
}
repositories {
// Add repositories to retrieve artifacts from in here.
// You should only use this when depending on other mods because
// Loom adds the essential maven repositories to download Minecraft and libraries from automatically.
// See https://docs.gradle.org/current/userguide/declaring_repositories.html
// for more information about repositories.
maven { url "https://maven.shedaniel.me/" }
maven { url "https://maven.terraformersmc.com/releases/" }
maven {
name = "Terraformers"
url = "https://maven.terraformersmc.com/"
}
}
loom {
@@ -42,6 +43,15 @@ dependencies {
// Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
modImplementation "net.fabricmc:fabric-language-kotlin:${project.fabric_kotlin_version}"
// Cloth Config
modApi("me.shedaniel.cloth:cloth-config-fabric:13.0.121") {
exclude(group: "net.fabricmc.fabric-api")
}
// Mod Menu
modImplementation("com.terraformersmc:modmenu:9.0.0")
}
processResources {