aboutsummaryrefslogtreecommitdiff
path: root/src/testmod/resources
diff options
context:
space:
mode:
authorxander <xander@isxander.dev>2022-09-01 08:57:59 +0100
committerxander <xander@isxander.dev>2022-09-01 08:57:59 +0100
commit6f8ef7daaafd71090b2c334c10eadc8dedc738d9 (patch)
treed4054a65d99070c944132be83d25e109750dc5f9 /src/testmod/resources
parent9d0a5e937f97c1c17d034393e01636d5241f376a (diff)
downloadYetAnotherConfigLib-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.json21
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"
+ }
+}