aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/modmenu/FirmamentModMenuPlugin.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/modmenu/FirmamentModMenuPlugin.kt')
-rw-r--r--src/main/kotlin/modmenu/FirmamentModMenuPlugin.kt14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/main/kotlin/modmenu/FirmamentModMenuPlugin.kt b/src/main/kotlin/modmenu/FirmamentModMenuPlugin.kt
new file mode 100644
index 0000000..f889bf3
--- /dev/null
+++ b/src/main/kotlin/modmenu/FirmamentModMenuPlugin.kt
@@ -0,0 +1,14 @@
+
+
+package moe.nea.firmament.modmenu
+
+import com.terraformersmc.modmenu.api.ConfigScreenFactory
+import com.terraformersmc.modmenu.api.ModMenuApi
+import moe.nea.firmament.gui.config.AllConfigsGui
+
+class FirmamentModMenuPlugin : ModMenuApi {
+ override fun getModConfigScreenFactory(): ConfigScreenFactory<*> {
+ return ConfigScreenFactory { AllConfigsGui.makeScreen(it) }
+ }
+}
+