chipmunkmod/src/main/resources/fabric.mod.json

18 lines
375 B
JSON
Raw Normal View History

2018-11-03 18:22:32 -04:00
{
"id": "modid",
"name": "Example Mod",
2018-12-12 21:18:40 -05:00
"description": "This is an example description! Tell everyone what your mod is about!",
"version": "${version}",
2018-11-03 18:22:32 -04:00
"side": "universal",
"initializers": [
"net.fabricmc.example.ExampleMod"
],
2018-12-12 14:48:51 -05:00
"requires": {
"fabric": "*"
},
2018-11-03 18:22:32 -04:00
"mixins": {
"client": "modid.client.json",
"common": "modid.common.json"
}
2018-12-12 21:18:40 -05:00
}