diff options
author | makamys <makamys@outlook.com> | 2020-03-10 22:54:52 +0100 |
---|---|---|
committer | makamys <makamys@outlook.com> | 2021-05-06 13:54:48 +0200 |
commit | 02a6aa4a24662815664ad86cb81d2a3f167775d7 (patch) | |
tree | 795fab48832fce98ea12790536504f159fb89470 /src/main/resources | |
download | Neodymium-02a6aa4a24662815664ad86cb81d2a3f167775d7.tar.gz Neodymium-02a6aa4a24662815664ad86cb81d2a3f167775d7.tar.bz2 Neodymium-02a6aa4a24662815664ad86cb81d2a3f167775d7.zip |
Initial commit (basic Mixin setup)
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/lodmod.mixin.json | 11 | ||||
-rw-r--r-- | src/main/resources/mcmod.info | 15 |
2 files changed, 26 insertions, 0 deletions
diff --git a/src/main/resources/lodmod.mixin.json b/src/main/resources/lodmod.mixin.json new file mode 100644 index 0000000..d8455bf --- /dev/null +++ b/src/main/resources/lodmod.mixin.json @@ -0,0 +1,11 @@ +{ + "required": true, + "minVersion": "0.6", + "package": "makamys.lodmod.mixin", + "refmap": "lodmod.mixin.refmap.json", + "compatibilityLevel": "JAVA_8", + "mixins": [ + "MixinSoundManager", + "IRenderGlobal" + ] +} diff --git a/src/main/resources/mcmod.info b/src/main/resources/mcmod.info new file mode 100644 index 0000000..7d06cb6 --- /dev/null +++ b/src/main/resources/mcmod.info @@ -0,0 +1,15 @@ +[ +{ + "modid": "lodmod", + "name": "LOD mod", + "description": "Increases render distance by rendering distant chunks with a low level of detail", + "version": "${version}", + "mcversion": "${mcversion}", + "url": "", + "updateUrl": "", + "authorList": ["makamys"], + "logoFile": "", + "screenshots": [], + "dependencies": [] +} +] |