diff options
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" + ] +} |