aboutsummaryrefslogtreecommitdiff
path: root/GuiTest/src/main/resources
diff options
context:
space:
mode:
authorFalkreon <falkreon@gmail.com>2019-08-24 21:17:24 -0500
committerFalkreon <falkreon@gmail.com>2019-08-24 21:17:24 -0500
commit2ae4c11c84ad90031b0fd32e011c49849352bcc5 (patch)
tree303da79f8304110029c32148fd02453e0cc02059 /GuiTest/src/main/resources
parentd17ec9d9299b7dae2964d7314a60502b56f7e12b (diff)
downloadLibGui-2ae4c11c84ad90031b0fd32e011c49849352bcc5.tar.gz
LibGui-2ae4c11c84ad90031b0fd32e011c49849352bcc5.tar.bz2
LibGui-2ae4c11c84ad90031b0fd32e011c49849352bcc5.zip
Add test project, fix readme, work on list widget
Diffstat (limited to 'GuiTest/src/main/resources')
-rw-r--r--GuiTest/src/main/resources/assets/libgui-test/icon.pngbin0 -> 5016 bytes
-rw-r--r--GuiTest/src/main/resources/fabric.mod.json29
2 files changed, 29 insertions, 0 deletions
diff --git a/GuiTest/src/main/resources/assets/libgui-test/icon.png b/GuiTest/src/main/resources/assets/libgui-test/icon.png
new file mode 100644
index 0000000..4286522
--- /dev/null
+++ b/GuiTest/src/main/resources/assets/libgui-test/icon.png
Binary files differ
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": "*"
+ }
+}