Files
minecraft-mod/src/main/resources/fabric.mod.json

14 lines
268 B
JSON
Raw Normal View History

2018-11-03 23:22:32 +01:00
{
"id": "modid",
"name": "Example Mod",
"version": "1.0.0",
"side": "universal",
"initializer": "net.fabricmc.example.ExampleMod",
2018-12-12 20:48:51 +01:00
"requires": {
"fabric": "*"
},
2018-11-03 23:22:32 +01:00
"mixins": {
"client": "modid.client.json",
"common": "modid.common.json"
}
}