diff options
Diffstat (limited to 'src/main/resources/fabric.mod.json')
-rw-r--r-- | src/main/resources/fabric.mod.json | 24 |
1 files changed, 7 insertions, 17 deletions
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index f37c644..d803a84 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -1,31 +1,21 @@ { "schemaVersion": 1, - "id": "modid", + "id": "libgui", "version": "${version}", - "name": "Example Mod", - "description": "This is an example description! Tell everyone what your mod is about!", + "name": "LibGui", + "description": "Easy grid-based GUIs for Fabric", "authors": [ - "Me!" + "Falkreon" ], "contact": { - "homepage": "https://fabricmc.net/", - "sources": "https://github.com/FabricMC/fabric-example-mod" + "sources": "https://github.com/CottonMC/LibGUI" }, - "license": "CC0-1.0", - "icon": "assets/modid/icon.png", + "license": "MIT", + "icon": "assets/libgui/icon.png", "environment": "*", - "entrypoints": { - "main": [ - "net.fabricmc.example.ExampleMod" - ] - }, - "mixins": [ - "modid.mixins.json" - ], - "depends": { "fabricloader": ">=0.4.0", "fabric": "*" |