diff options
author | Squibid <me@zacharyscheiman.com> | 2024-06-03 18:28:47 -0400 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2024-06-03 18:28:47 -0400 |
commit | bbb0d1d79f70fbfca377d1f2c4f558d35096a851 (patch) | |
tree | 759432ce3ef8a81352dcc14df473c8a605cc9c71 /src/main/resources | |
download | lnm-bbb0d1d79f70fbfca377d1f2c4f558d35096a851.tar.gz lnm-bbb0d1d79f70fbfca377d1f2c4f558d35096a851.tar.bz2 lnm-bbb0d1d79f70fbfca377d1f2c4f558d35096a851.zip |
init
Diffstat (limited to '')
-rw-r--r-- | src/main/resources/assets/lnm/icon.png | bin | 0 -> 631 bytes | |||
-rw-r--r-- | src/main/resources/fabric.mod.json | 34 | ||||
-rw-r--r-- | src/main/resources/lnm.mixins.json | 11 |
3 files changed, 45 insertions, 0 deletions
diff --git a/src/main/resources/assets/lnm/icon.png b/src/main/resources/assets/lnm/icon.png Binary files differnew file mode 100644 index 0000000..d5ffb35 --- /dev/null +++ b/src/main/resources/assets/lnm/icon.png diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..eb3e4f6 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,34 @@ +{ + "schemaVersion": 1, + "id": "lnm", + "version": "${version}", + "name": "LNM", + "description": "This is an example description! Tell everyone what your mod is about!", + "authors": [ + "Me!" + ], + "contact": { + "homepage": "https://fabricmc.net/", + "sources": "https://github.com/FabricMC/fabric-example-mod" + }, + "license": "CC0-1.0", + "icon": "assets/lnm/icon.png", + "environment": "*", + "entrypoints": { + "main": [ + "los.numeros.LNM" + ] + }, + "mixins": [ + "lnm.mixins.json" + ], + "depends": { + "fabricloader": ">=0.15.11", + "minecraft": "~1.16.5", + "java": ">=8", + "fabric": "*" + }, + "suggests": { + "another-mod": "*" + } +}
\ No newline at end of file diff --git a/src/main/resources/lnm.mixins.json b/src/main/resources/lnm.mixins.json new file mode 100644 index 0000000..82ea8e8 --- /dev/null +++ b/src/main/resources/lnm.mixins.json @@ -0,0 +1,11 @@ +{ + "required": true, + "package": "los.numeros.mixin", + "compatibilityLevel": "JAVA_8", + "mixins": [ + "ExampleMixin" + ], + "injectors": { + "defaultRequire": 1 + } +}
\ No newline at end of file |