aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources
diff options
context:
space:
mode:
authorGravatar Jonas Gunz <himself@jonasgunz.de> 2020-04-13 11:31:50 +0200
committerGravatar Jonas Gunz <himself@jonasgunz.de> 2020-04-13 11:31:50 +0200
commit792549e981f5370f07502cab8ca4063e3c76feb9 (patch)
tree33ae98c9864d824361b0b7b520499249dec7ed08 /src/main/resources
downloadparquet-792549e981f5370f07502cab8ca4063e3c76feb9.tar.gz
Initial
Diffstat (limited to 'src/main/resources')
-rw-r--r--src/main/resources/assets/parquet/icon.pngbin0 -> 453 bytes
-rw-r--r--src/main/resources/fabric.mod.json36
-rw-r--r--src/main/resources/parquet.mixins.json14
3 files changed, 50 insertions, 0 deletions
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
--- /dev/null
+++ b/src/main/resources/assets/parquet/icon.png
Binary files 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
+ }
+}