Initial commit

This commit is contained in:
2026-01-01 02:31:47 +01:00
commit 1a8841ce5a
18 changed files with 766 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
{
"schemaVersion": 1,
"id": "smooth-double-doors",
"version": "${version}",
"name": "Smooth Double Doors",
"description": "This is an example description! Tell everyone what your mod is about!",
"authors": [
"Me!"
],
"contact": {
"homepage": "https://fabricmc.net/",
"sources": "https://github.com/FabricMC/fabric-example-mod"
},
"license": "CC0-1.0",
"icon": "assets/smooth-double-doors/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"com.straice.smoothdoors.SmoothDoubleDoors"
],
"client": [
"com.straice.smoothdoors.SmoothDoubleDoorsClient"
]
},
"mixins": [
"smooth-double-doors.mixins.json",
{
"config": "smooth-double-doors.client.mixins.json",
"environment": "client"
}
],
"depends": {
"fabricloader": ">=0.18.4",
"minecraft": "~1.21.8",
"java": ">=21",
"fabric-api": "*"
}
}