From 2ae4c11c84ad90031b0fd32e011c49849352bcc5 Mon Sep 17 00:00:00 2001 From: Falkreon Date: Sat, 24 Aug 2019 21:17:24 -0500 Subject: Add test project, fix readme, work on list widget --- GuiTest/src/main/resources/fabric.mod.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 GuiTest/src/main/resources/fabric.mod.json (limited to 'GuiTest/src/main/resources/fabric.mod.json') diff --git a/GuiTest/src/main/resources/fabric.mod.json b/GuiTest/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..df68f07 --- /dev/null +++ b/GuiTest/src/main/resources/fabric.mod.json @@ -0,0 +1,29 @@ +{ + "schemaVersion": 1, + "id": "libgui-test", + "version": "${version}", + + "name": "LibGui Test", + "description": "Some example Guis to shake out errors", + "authors": [ + "Falkreon" + ], + "contact": { + "sources": "https://github.com/CottonMC/LibGUI" + }, + + "license": "MIT", + "icon": "assets/libgui-test/icon.png", + + "environment": "*", + "entrypoints": { + "main": [ "io.github.cottonmc.test.LibGuiTest"], + "client": [ "io.github.cottonmc.test.client.LibGuiTestClient" ] + }, + "depends": { + "fabricloader": ">=0.4.0", + "libgui": "*", + "jankson": "1.0.x", + "fabric": "*" + } +} -- cgit