aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/modmenu
diff options
context:
space:
mode:
authornea <nea@nea.moe>2023-05-26 00:36:23 +0200
committernea <nea@nea.moe>2023-05-26 00:36:23 +0200
commit484a4b1a61493eb1401ac9c8ac063db3f847cf98 (patch)
treeedeba4641148b681c54aebd8a1a1fae12cdc7910 /src/main/kotlin/moe/nea/firmament/modmenu
parent402e07e9d8b72f4105e3183bbd1d6db62722fa9b (diff)
downloadFirmament-484a4b1a61493eb1401ac9c8ac063db3f847cf98.tar.gz
Firmament-484a4b1a61493eb1401ac9c8ac063db3f847cf98.tar.bz2
Firmament-484a4b1a61493eb1401ac9c8ac063db3f847cf98.zip
Add config gui to mod menu
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament/modmenu')
-rw-r--r--src/main/kotlin/moe/nea/firmament/modmenu/FirmamentModMenuPlugin.kt12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/modmenu/FirmamentModMenuPlugin.kt b/src/main/kotlin/moe/nea/firmament/modmenu/FirmamentModMenuPlugin.kt
new file mode 100644
index 0000000..44e491e
--- /dev/null
+++ b/src/main/kotlin/moe/nea/firmament/modmenu/FirmamentModMenuPlugin.kt
@@ -0,0 +1,12 @@
+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) }
+ }
+}
+