diff options
author | xander <xander@isxander.dev> | 2022-09-01 08:57:59 +0100 |
---|---|---|
committer | xander <xander@isxander.dev> | 2022-09-01 08:57:59 +0100 |
commit | 6f8ef7daaafd71090b2c334c10eadc8dedc738d9 (patch) | |
tree | d4054a65d99070c944132be83d25e109750dc5f9 /src/testmod/resources | |
parent | 9d0a5e937f97c1c17d034393e01636d5241f376a (diff) | |
download | YetAnotherConfigLib-6f8ef7daaafd71090b2c334c10eadc8dedc738d9.tar.gz YetAnotherConfigLib-6f8ef7daaafd71090b2c334c10eadc8dedc738d9.tar.bz2 YetAnotherConfigLib-6f8ef7daaafd71090b2c334c10eadc8dedc738d9.zip |
GUI Implementation
Added groups
Added button "option"
Added test mod
Diffstat (limited to 'src/testmod/resources')
-rw-r--r-- | src/testmod/resources/fabric.mod.json | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/testmod/resources/fabric.mod.json b/src/testmod/resources/fabric.mod.json new file mode 100644 index 0000000..0d78804 --- /dev/null +++ b/src/testmod/resources/fabric.mod.json @@ -0,0 +1,21 @@ +{ + "schemaVersion": 1, + "id": "test-mod", + "version": "1", + "name": "YACL Test", + "authors": [ + "isXander" + ], + "license": "LGPL-3.0-or-later", + "environment": "client", + "entrypoints": { + "modmenu": [ + "dev.isxander.yacl.test.ModMenuIntegration" + ] + }, + "depends": { + "fabricloader": ">=0.14.0", + "minecraft": "1.19.x", + "java": ">=17" + } +} |