aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources
diff options
context:
space:
mode:
authoringlettronald <71849533+inglettronald@users.noreply.github.com>2022-09-23 01:37:06 -0500
committeringlettronald <71849533+inglettronald@users.noreply.github.com>2022-09-23 01:37:06 -0500
commitcfcdcda458b2fe9fbe33bb81759dfd4e4fb3bcc0 (patch)
tree520c920b1ac2ec334d71f1a71360a3a282f5ee4c /src/main/resources
downloadDulkirMod-cfcdcda458b2fe9fbe33bb81759dfd4e4fb3bcc0.tar.gz
DulkirMod-cfcdcda458b2fe9fbe33bb81759dfd4e4fb3bcc0.tar.bz2
DulkirMod-cfcdcda458b2fe9fbe33bb81759dfd4e4fb3bcc0.zip
Initial commit
Diffstat (limited to 'src/main/resources')
-rw-r--r--src/main/resources/mcmod.info18
-rw-r--r--src/main/resources/mixins.examplemod.json11
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"
+ ]
+}