diff options
Diffstat (limited to 'spark-fabric/src/main/resources')
-rw-r--r-- | spark-fabric/src/main/resources/assets/spark/icon.png | bin | 0 -> 2932 bytes | |||
-rw-r--r-- | spark-fabric/src/main/resources/fabric.mod.json | 29 | ||||
-rw-r--r-- | spark-fabric/src/main/resources/pack.mcmeta | 6 | ||||
-rw-r--r-- | spark-fabric/src/main/resources/spark.mixins.json | 15 |
4 files changed, 50 insertions, 0 deletions
diff --git a/spark-fabric/src/main/resources/assets/spark/icon.png b/spark-fabric/src/main/resources/assets/spark/icon.png Binary files differnew file mode 100644 index 0000000..fef8f70 --- /dev/null +++ b/spark-fabric/src/main/resources/assets/spark/icon.png diff --git a/spark-fabric/src/main/resources/fabric.mod.json b/spark-fabric/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..13a352d --- /dev/null +++ b/spark-fabric/src/main/resources/fabric.mod.json @@ -0,0 +1,29 @@ +{ + "schemaVersion": 1, + "id": "spark", + "version": "${pluginVersion}", + "name": "Spark", + "icon": "assets/spark/icon.png", + "description": "${pluginDescription}", + "authors": [ + "Lucko" + ], + "contact": { + "homepage": "https://sparkprofiler.github.io/", + "sources": "https://github.com/lucko/spark", + "issues": "https://github.com/lucko/spark/issues" + }, + "license": "GNU General Public License v3.0", + "environment": "*", + "entrypoints": { + "main": [ + "me.lucko.spark.fabric.FabricSparkMod" + ] + }, + "mixins": [ + "spark.mixins.json" + ], + "depends": { + "fabricloader": ">=0.4.0" + } +} diff --git a/spark-fabric/src/main/resources/pack.mcmeta b/spark-fabric/src/main/resources/pack.mcmeta new file mode 100644 index 0000000..e6c4c25 --- /dev/null +++ b/spark-fabric/src/main/resources/pack.mcmeta @@ -0,0 +1,6 @@ +{ + "pack": { + "description": "spark resources", + "pack_format": 4 + } +} diff --git a/spark-fabric/src/main/resources/spark.mixins.json b/spark-fabric/src/main/resources/spark.mixins.json new file mode 100644 index 0000000..bde03fb --- /dev/null +++ b/spark-fabric/src/main/resources/spark.mixins.json @@ -0,0 +1,15 @@ +{ + "required": true, + "package": "me.lucko.spark.fabric.mixin", + "compatibilityLevel": "JAVA_8", + "mixins": [ + "MinecraftServerMixin" + ], + "client": [ + "MinecraftClientMixin", + "ClientPlayerEntityMixin" + ], + "injectors": { + "defaultRequire": 1 + } +} |