Initial Commit

This commit is contained in:
2023-11-06 23:25:17 +02:00
commit 8481afa16d
30 changed files with 961 additions and 0 deletions

27
Common/build.gradle Normal file
View File

@@ -0,0 +1,27 @@
archivesBaseName = "ExampleMod-Common-${minecraft_version}"
dependencies {
// Add your dependencies here
}
/**
* ===============================================================================
* = DO NOT EDIT BELOW THIS LINE UNLESS YOU KNOW WHAT YOU ARE DOING =
* ===============================================================================
*/
unimined.minecraft {
fabric {
loader fabric_loader
}
defaultRemapJar = false
}
processResources {
def buildProps = project.properties.clone()
filesMatching(['pack.mcmeta']) {
expand buildProps
}
}