Initial project setup for SilkSpawners mod

Add SilkSpawners mod source files, configuration, mixins, Gradle build scripts, and metadata for Fabric. Implements spawner drop logic, config loading/saving, and required interfaces/mixins for custom spawner behavior.
This commit is contained in:
2026-01-05 04:33:13 +01:00
commit 1b2c1c862b
18 changed files with 716 additions and 0 deletions

9
settings.gradle Normal file
View File

@@ -0,0 +1,9 @@
pluginManagement {
repositories {
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
}
gradlePluginPortal()
}
}