diff options
author | Keuin <[email protected]> | 2020-12-23 17:45:59 +0800 |
---|---|---|
committer | Keuin <[email protected]> | 2020-12-23 17:45:59 +0800 |
commit | e4e852441dc8a2ed083d602877ea0bfd41a5db3d (patch) | |
tree | 51eb189394672d99c13981604405debfb6f271d7 /src/main/resources |
Initial version (from template)
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/assets/blame/icon.png | bin | 0 -> 453 bytes | |||
-rw-r--r-- | src/main/resources/blame.mixins.json | 12 | ||||
-rw-r--r-- | src/main/resources/fabric.mod.json | 33 |
3 files changed, 45 insertions, 0 deletions
diff --git a/src/main/resources/assets/blame/icon.png b/src/main/resources/assets/blame/icon.png Binary files differnew file mode 100644 index 0000000..047b91f --- /dev/null +++ b/src/main/resources/assets/blame/icon.png diff --git a/src/main/resources/blame.mixins.json b/src/main/resources/blame.mixins.json new file mode 100644 index 0000000..ffac63d --- /dev/null +++ b/src/main/resources/blame.mixins.json @@ -0,0 +1,12 @@ +{ + "required": true, + "minVersion": "0.8", + "package": "com.keuin.blame.mixin", + "compatibilityLevel": "JAVA_8", + "injectors": { + "defaultRequire": 1 + }, + "mixins": [ + "ExampleMixin" + ] +} diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..f4d8e92 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,33 @@ +{ + "schemaVersion": 1, + "id": "blame", + "version": "${version}", + "name": "Blame", + "description": "Who to blame?", + "authors": [ + "trueKeuin" + ], + "contact": { + "homepage": "https://keuin.cc", + "sources": "https://github.com/keuin/blame-fabric" + }, + "license": "MIT", + "icon": "assets/blame/icon.png", + "environment": "*", + "entrypoints": { + "main": [ + "com.keuin.blame.Blame" + ] + }, + "mixins": [ + "blame.mixins.json" + ], + "depends": { + "fabricloader": ">=0.7.4", + "fabric": "*", + "minecraft": "1.16.x" + }, + "suggests": { + "another-mod": "*" + } +} |