From 5bbf027f32f3ea68ff4193f73f780316599ab59d Mon Sep 17 00:00:00 2001 From: nea Date: Thu, 21 Jul 2022 19:46:41 +0200 Subject: Initial commit --- src/main/resources/mcmod.info | 18 ++++++++++++++++++ src/main/resources/mixins.examplemod.json | 11 +++++++++++ 2 files changed, 29 insertions(+) create mode 100644 src/main/resources/mcmod.info create mode 100644 src/main/resources/mixins.examplemod.json (limited to 'src/main/resources') 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" + ] +} -- cgit