From 792549e981f5370f07502cab8ca4063e3c76feb9 Mon Sep 17 00:00:00 2001 From: Jonas Gunz Date: Mon, 13 Apr 2020 11:31:50 +0200 Subject: Initial --- src/main/resources/assets/parquet/icon.png | Bin 0 -> 453 bytes src/main/resources/fabric.mod.json | 36 +++++++++++++++++++++++++++++ src/main/resources/parquet.mixins.json | 14 +++++++++++ 3 files changed, 50 insertions(+) create mode 100644 src/main/resources/assets/parquet/icon.png create mode 100644 src/main/resources/fabric.mod.json create mode 100644 src/main/resources/parquet.mixins.json (limited to 'src/main/resources') diff --git a/src/main/resources/assets/parquet/icon.png b/src/main/resources/assets/parquet/icon.png new file mode 100644 index 0000000..047b91f Binary files /dev/null and b/src/main/resources/assets/parquet/icon.png differ diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..1da1e01 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,36 @@ +{ + "schemaVersion": 1, + "id": "parquet", + "version": "${version}", + + "name": "Vanilla", + "description": "Who knows", + "authors": [ + "kompetenzbolzen" + ], + "contact": { + "homepage": "https://jag.re/", + "sources": "https://github.com/" + }, + + "license": "", + "icon": "", + + "environment": "*", + "entrypoints": { + "main": [ + "re.jag.parquet.Parquet" + ] + }, + "mixins": [ + "parquet.mixins.json" + ], + + "depends": { + "fabricloader": ">=0.7.4", + "minecraft": "1.15.x" + }, + "suggests": { + "flamingo": "*" + } +} diff --git a/src/main/resources/parquet.mixins.json b/src/main/resources/parquet.mixins.json new file mode 100644 index 0000000..940a19e --- /dev/null +++ b/src/main/resources/parquet.mixins.json @@ -0,0 +1,14 @@ +{ + "required": true, + "minVersion": "0.8", + "package": "re.jag.parquet.mixin", + "compatibilityLevel": "JAVA_8", + "mixins": [ + ], + "server": [ + "VanillaMixin" + ], + "injectors": { + "defaultRequire": 1 + } +} -- cgit v1.2.3