SyncMon Structure

This commit is contained in:
2025-06-05 14:13:24 -04:00
parent 571ad78164
commit f58899edad
7 changed files with 352 additions and 39 deletions

View File

@@ -46,16 +46,18 @@ fabricApi {
}
dependencies {
// To change the versions see the gradle.properties file
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings loom.officialMojangMappings()
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
// To change the versions see the gradle.properties file
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings loom.officialMojangMappings()
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
// 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}"
// 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}"
modImplementation "com.cobblemon:fabric:1.6.0+1.21.1-SNAPSHOT"
modImplementation "com.cobblemon:fabric:1.6.0+1.21.1-SNAPSHOT"
implementation "com.google.code.gson:gson:2.10.1"
implementation "org.json:json:20231013" // Or the latest version
}
processResources {