From 3d91fd7897209f24c172f25fe4331fcda156001d Mon Sep 17 00:00:00 2001 From: Adrian Siekierka Date: Sat, 3 Nov 2018 23:22:32 +0100 Subject: first commit --- src/main/resources/mod.json | 11 +++++++++++ src/main/resources/modid.client.json | 12 ++++++++++++ src/main/resources/modid.common.json | 11 +++++++++++ 3 files changed, 34 insertions(+) create mode 100644 src/main/resources/mod.json create mode 100644 src/main/resources/modid.client.json create mode 100644 src/main/resources/modid.common.json (limited to 'src/main/resources') diff --git a/src/main/resources/mod.json b/src/main/resources/mod.json new file mode 100644 index 0000000..f9dcafd --- /dev/null +++ b/src/main/resources/mod.json @@ -0,0 +1,11 @@ +{ + "id": "modid", + "name": "Example Mod", + "version": "1.0.0", + "side": "universal", + "initializer": "net.fabricmc.example.ExampleMod", + "mixins": { + "client": "modid.client.json", + "common": "modid.common.json" + } +} \ No newline at end of file diff --git a/src/main/resources/modid.client.json b/src/main/resources/modid.client.json new file mode 100644 index 0000000..d6fc9b4 --- /dev/null +++ b/src/main/resources/modid.client.json @@ -0,0 +1,12 @@ +{ + "required": true, + "package": "net.fabricmc.example.mixin", + "compatibilityLevel": "JAVA_8", + "mixins": [ + "ExampleMixin" + ], + "refmap": "modid.refmap.json", + "injectors": { + "defaultRequire": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/modid.common.json b/src/main/resources/modid.common.json new file mode 100644 index 0000000..a39340e --- /dev/null +++ b/src/main/resources/modid.common.json @@ -0,0 +1,11 @@ +{ + "required": true, + "package": "net.fabricmc.example.mixin", + "compatibilityLevel": "JAVA_8", + "mixins": [ + ], + "refmap": "modid.refmap.json", + "injectors": { + "defaultRequire": 1 + } +} \ No newline at end of file -- cgit v1.2.3