From 6f8ef7daaafd71090b2c334c10eadc8dedc738d9 Mon Sep 17 00:00:00 2001 From: xander Date: Thu, 1 Sep 2022 08:57:59 +0100 Subject: GUI Implementation Added groups Added button "option" Added test mod --- src/testmod/resources/fabric.mod.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/testmod/resources/fabric.mod.json (limited to 'src/testmod/resources') 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" + } +} -- cgit