diff options
Diffstat (limited to 'src/main/resources/fabric.mod.json')
| -rw-r--r-- | src/main/resources/fabric.mod.json | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..7b5b38d --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,36 @@ +{ + "schemaVersion": 1, + "id": "Floodhunt", + "version": "${version}", + "name": "Floodhunt", + "description": "Floodhunt mod", + "authors": [ + "Anhgelus Morhtuuzh" + ], + "contact": {}, + "license": "AGPL-3.0", + "icon": "assets/molehunt/icon.png", + "environment": "*", + "entrypoints": { + "client": [ + "world.anhgelus.floodhunt.client.FloodhuntClient" + ], + "server": [ + ], + "main": [ + "world.anhgelus.floodhunt.Floodhunt" + ] + }, + "mixins": [ + "Floodhunt.mixins.json", + { + "config": "Floodhunt.client.mixins.json", + "environment": "client" + } + ], + "depends": { + "fabricloader": ">=${loader_version}", + "fabric-api": "*", + "minecraft": "${minecraft_version}" + } +} |
