Review the changes post-commit

This commit is contained in:
Ennui Langeweile 2023-10-03 01:15:46 -03:00
parent 55e7547d49
commit 65543cf5ad
No known key found for this signature in database
GPG key ID: C2C63BEAB0520BC4

View file

@ -19,9 +19,9 @@ repositories {
} }
loom { loom {
// Loom and Loader use this block to gather more information about your mod. // Loom and Loader both use this block in order to gather more information about your mod.
mods { mods {
// This should match your mod's mod id. // This should match your mod id.
"example_mod" { "example_mod" {
// Tell Loom about each source set used by your mod here. This ensures that your mod's classes are properly transformed by Loader. // Tell Loom about each source set used by your mod here. This ensures that your mod's classes are properly transformed by Loader.
sourceSet("main") sourceSet("main")
@ -31,6 +31,7 @@ loom {
} }
} }
} }
// All the dependencies are declared at gradle/libs.version.toml and referenced with "libs.<id>" // All the dependencies are declared at gradle/libs.version.toml and referenced with "libs.<id>"
// See https://docs.gradle.org/current/userguide/platforms.html for information on how version catalogs work. // See https://docs.gradle.org/current/userguide/platforms.html for information on how version catalogs work.
dependencies { dependencies {