aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources
diff options
context:
space:
mode:
authorSHsuperCM <shsupercm@gmail.com>2021-08-20 15:48:24 +0300
committerSHsuperCM <shsupercm@gmail.com>2021-08-20 15:48:24 +0300
commitec00a9307d3eadca3a7407173320f7f941401164 (patch)
tree3de50a3977a638dd796908d15e3a71852efcb1eb /src/main/resources
downloadCITResewn-ec00a9307d3eadca3a7407173320f7f941401164.tar.gz
CITResewn-ec00a9307d3eadca3a7407173320f7f941401164.tar.bz2
CITResewn-ec00a9307d3eadca3a7407173320f7f941401164.zip
Initial commit
Diffstat (limited to 'src/main/resources')
-rw-r--r--src/main/resources/citresewn.mixins.json13
-rw-r--r--src/main/resources/fabric.mod.json26
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"
+ }
+}