aboutsummaryrefslogtreecommitdiff
path: root/test-fabric/src/main
diff options
context:
space:
mode:
authorisXander <xandersmith2008@gmail.com>2023-09-24 15:48:15 +0100
committerisXander <xandersmith2008@gmail.com>2023-09-24 15:48:15 +0100
commitd2b67633c1d3ca0c46682b05955dafafd3597f1d (patch)
tree7e7ae123d0cb945a45eb940a12eb03a4d4e04d80 /test-fabric/src/main
parent554646dbd857e2fab1be8339ce8d0231ef2dbb4c (diff)
downloadYetAnotherConfigLib-d2b67633c1d3ca0c46682b05955dafafd3597f1d.tar.gz
YetAnotherConfigLib-d2b67633c1d3ca0c46682b05955dafafd3597f1d.tar.bz2
YetAnotherConfigLib-d2b67633c1d3ca0c46682b05955dafafd3597f1d.zip
1.20.2
Diffstat (limited to 'test-fabric/src/main')
-rw-r--r--test-fabric/src/main/java/dev/isxander/yacl3/test/fabric/ModMenuEntrypoint.java12
-rw-r--r--test-fabric/src/main/resources/fabric.mod.json5
2 files changed, 4 insertions, 13 deletions
diff --git a/test-fabric/src/main/java/dev/isxander/yacl3/test/fabric/ModMenuEntrypoint.java b/test-fabric/src/main/java/dev/isxander/yacl3/test/fabric/ModMenuEntrypoint.java
deleted file mode 100644
index 708ce97..0000000
--- a/test-fabric/src/main/java/dev/isxander/yacl3/test/fabric/ModMenuEntrypoint.java
+++ /dev/null
@@ -1,12 +0,0 @@
-package dev.isxander.yacl3.test.fabric;
-
-import com.terraformersmc.modmenu.api.ConfigScreenFactory;
-import com.terraformersmc.modmenu.api.ModMenuApi;
-import dev.isxander.yacl3.test.GuiTest;
-
-public class ModMenuEntrypoint implements ModMenuApi {
- @Override
- public ConfigScreenFactory<?> getModConfigScreenFactory() {
- return GuiTest::getModConfigScreenFactory;
- }
-}
diff --git a/test-fabric/src/main/resources/fabric.mod.json b/test-fabric/src/main/resources/fabric.mod.json
index ff9c0f3..83560f8 100644
--- a/test-fabric/src/main/resources/fabric.mod.json
+++ b/test-fabric/src/main/resources/fabric.mod.json
@@ -9,5 +9,8 @@
"modmenu": [
"dev.isxander.yacl3.test.fabric.ModMenuEntrypoint"
]
- }
+ },
+ "mixins": [
+ "yacl-test.mixins.json"
+ ]
}