diff options
Diffstat (limited to 'src/main/resources')
| -rw-r--r-- | src/main/resources/citresewn.mixins.json | 13 | ||||
| -rw-r--r-- | src/main/resources/fabric.mod.json | 26 |
2 files changed, 39 insertions, 0 deletions
diff --git a/src/main/resources/citresewn.mixins.json b/src/main/resources/citresewn.mixins.json new file mode 100644 index 0000000..2baaf4b --- /dev/null +++ b/src/main/resources/citresewn.mixins.json @@ -0,0 +1,13 @@ +{ + "required": true, + "minVersion": "0.8", + "package": "shcm.shsupercm.fabric.citresewn.mixin", + "compatibilityLevel": "JAVA_16", + "client": [ + "ReloadableResourceManagerImplMixin", + "IdentifierMixin" + ], + "injectors": { + "defaultRequire": 1 + } +} diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..b483bd9 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,26 @@ +{ + "schemaVersion": 1, + "id": "citresewn", + "version": "${version}", + "name": "CITResewn", + "description": "Re-implements MCPatcher's CIT", + "authors": [ + "SHsuperCM" + ], + "contact": {}, + "license": "MIT", + + "environment": "client", + "entrypoints": { + "client": [ + "shcm.shsupercm.fabric.citresewn.CITResewnClient" + ] + }, + "mixins": [ + "citresewn.mixins.json" + ], + "depends": { + "fabricloader": ">=0.11.6", + "minecraft": "1.17.1" + } +} |
