diff options
author | nea <romangraef@gmail.com> | 2022-07-21 19:46:41 +0200 |
---|---|---|
committer | nea <romangraef@gmail.com> | 2022-07-21 19:46:41 +0200 |
commit | 5bbf027f32f3ea68ff4193f73f780316599ab59d (patch) | |
tree | d2c6f075ff7b853566fa7e5dd01dda984ea40a6c /src/main/resources | |
download | forge1.8.9template-5bbf027f32f3ea68ff4193f73f780316599ab59d.tar.gz forge1.8.9template-5bbf027f32f3ea68ff4193f73f780316599ab59d.tar.bz2 forge1.8.9template-5bbf027f32f3ea68ff4193f73f780316599ab59d.zip |
Initial commit
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/mcmod.info | 18 | ||||
-rw-r--r-- | src/main/resources/mixins.examplemod.json | 11 |
2 files changed, 29 insertions, 0 deletions
diff --git a/src/main/resources/mcmod.info b/src/main/resources/mcmod.info new file mode 100644 index 0000000..7b1a26b --- /dev/null +++ b/src/main/resources/mcmod.info @@ -0,0 +1,18 @@ +[ + { + "modid": "examplemod", + "name": "Xample Mod", + "description": "A mod that is used as an example.", + "version": "1.0.0", + "mcversion": "1.8.9", + "url": "https://github.com/romangraef/Forge1.8.9Template/", + "updateUrl": "", + "authorList": [ + "You" + ], + "credits": "", + "logoFile": "", + "screenshots": [], + "dependencies": [] + } +] diff --git a/src/main/resources/mixins.examplemod.json b/src/main/resources/mixins.examplemod.json new file mode 100644 index 0000000..ee27201 --- /dev/null +++ b/src/main/resources/mixins.examplemod.json @@ -0,0 +1,11 @@ +{ + "package": "com.example.mixin", + "refmap": "mixins.examplemod.refmap.json", + "minVersion": "0.7", + "compatibilityLevel": "JAVA_8", + "mixins": [ + ], + "client": [ + "MixinGuiMainMenu" + ] +} |