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

14 lines
268 B
JSON
Raw Normal View History

2018-11-03 18:22:32 -04:00
{
"id": "modid",
"name": "Example Mod",
"version": "1.0.0",
"side": "universal",
"initializer": "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"
}
}