diff options
author | falseresync <falseresync@gmail.com> | 2019-07-03 19:40:14 +0000 |
---|---|---|
committer | falseresync <falseresync@gmail.com> | 2019-07-03 19:40:14 +0000 |
commit | 854eba2e998951ae30c45825e3cf3180ec77c2b7 (patch) | |
tree | eefedc371f9ef18b648a57bf6449571ec61cc7c0 /src/main/resources | |
download | LibGui-854eba2e998951ae30c45825e3cf3180ec77c2b7.tar.gz LibGui-854eba2e998951ae30c45825e3cf3180ec77c2b7.tar.bz2 LibGui-854eba2e998951ae30c45825e3cf3180ec77c2b7.zip |
Initial commit
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/assets/modid/icon.png | bin | 0 -> 453 bytes | |||
-rw-r--r-- | src/main/resources/fabric.mod.json | 36 | ||||
-rw-r--r-- | src/main/resources/modid.mixins.json | 13 |
3 files changed, 49 insertions, 0 deletions
diff --git a/src/main/resources/assets/modid/icon.png b/src/main/resources/assets/modid/icon.png Binary files differnew file mode 100644 index 0000000..047b91f --- /dev/null +++ b/src/main/resources/assets/modid/icon.png diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..f37c644 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,36 @@ +{ + "schemaVersion": 1, + "id": "modid", + "version": "${version}", + + "name": "Example Mod", + "description": "This is an example description! Tell everyone what your mod is about!", + "authors": [ + "Me!" + ], + "contact": { + "homepage": "https://fabricmc.net/", + "sources": "https://github.com/FabricMC/fabric-example-mod" + }, + + "license": "CC0-1.0", + "icon": "assets/modid/icon.png", + + "environment": "*", + "entrypoints": { + "main": [ + "net.fabricmc.example.ExampleMod" + ] + }, + "mixins": [ + "modid.mixins.json" + ], + + "depends": { + "fabricloader": ">=0.4.0", + "fabric": "*" + }, + "suggests": { + "flamingo": "*" + } +} diff --git a/src/main/resources/modid.mixins.json b/src/main/resources/modid.mixins.json new file mode 100644 index 0000000..e243f0a --- /dev/null +++ b/src/main/resources/modid.mixins.json @@ -0,0 +1,13 @@ +{ + "required": true, + "package": "net.fabricmc.example.mixin", + "compatibilityLevel": "JAVA_8", + "mixins": [ + ], + "client": [ + "ExampleMixin" + ], + "injectors": { + "defaultRequire": 1 + } +} |