diff options
author | Xander <xandersmith2008@gmail.com> | 2022-08-30 16:53:16 +0100 |
---|---|---|
committer | Xander <xandersmith2008@gmail.com> | 2022-08-30 16:53:16 +0100 |
commit | d643a44c866504a642f9de0055417a82585d96e5 (patch) | |
tree | 199113aaa8b3dfb3c4c3191991c1501673e8da10 /src | |
download | YetAnotherConfigLib-d643a44c866504a642f9de0055417a82585d96e5.tar.gz YetAnotherConfigLib-d643a44c866504a642f9de0055417a82585d96e5.tar.bz2 YetAnotherConfigLib-d643a44c866504a642f9de0055417a82585d96e5.zip |
Initial commit
Diffstat (limited to 'src')
4 files changed, 37 insertions, 0 deletions
diff --git a/src/main/java/dev/isxander/fabricmodtemplate/.gitkeep b/src/main/java/dev/isxander/fabricmodtemplate/.gitkeep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/src/main/java/dev/isxander/fabricmodtemplate/.gitkeep diff --git a/src/main/java/dev/isxander/fabricmodtemplate/mixins/.gitkeep b/src/main/java/dev/isxander/fabricmodtemplate/mixins/.gitkeep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/src/main/java/dev/isxander/fabricmodtemplate/mixins/.gitkeep diff --git a/src/main/resources/fabric-mod-template.mixins.json b/src/main/resources/fabric-mod-template.mixins.json new file mode 100644 index 0000000..9ac6462 --- /dev/null +++ b/src/main/resources/fabric-mod-template.mixins.json @@ -0,0 +1,9 @@ +{ + "package": "dev.isxander.fabricmodtemplate.mixins", + "required": true, + "minVersion": "0.8", + "compatibilityLevel": "JAVA_17", + "mixins": [ + + ] +}
\ No newline at end of file diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..95b5d16 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,28 @@ +{ + "schemaVersion": 1, + "id": "${id}", + "version": "${version}", + "name": "${name}", + "description": "${description}", + "authors": [ + "isXander" + ], + "contact": { + "homepage": "https://isxander.dev", + "issues": "https://github.com/${github}/issues", + "sources": "https://github.com/${github}" + }, + "license": "LGPL-3.0-or-later", + "environment": "client", + "entrypoints": { + + }, + "mixins": [ + "fabric-mod-template.mixins.json" + ], + "depends": { + "fabricloader": ">=0.14.0", + "minecraft": "1.19.x", + "java": ">=17" + } +} |