diff options
author | Linnea Gräf <nea@nea.moe> | 2024-10-26 18:55:30 +0200 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-10-26 18:55:30 +0200 |
commit | 8ab44088546bf3360564e1a09f0831fea7659d2e (patch) | |
tree | ef8441392283614d2cc6700d056465b714eec5c4 /src/main/kotlin | |
parent | 928f6a45017df8aeb467e6879b350ade89c73d9a (diff) | |
download | firmament-8ab44088546bf3360564e1a09f0831fea7659d2e.tar.gz firmament-8ab44088546bf3360564e1a09f0831fea7659d2e.tar.bz2 firmament-8ab44088546bf3360564e1a09f0831fea7659d2e.zip |
Isolate modmenu compat
[no changelog]
Diffstat (limited to 'src/main/kotlin')
-rw-r--r-- | src/main/kotlin/modmenu/FirmamentModMenuPlugin.kt | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/main/kotlin/modmenu/FirmamentModMenuPlugin.kt b/src/main/kotlin/modmenu/FirmamentModMenuPlugin.kt deleted file mode 100644 index f889bf3..0000000 --- a/src/main/kotlin/modmenu/FirmamentModMenuPlugin.kt +++ /dev/null @@ -1,14 +0,0 @@ - - -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) } - } -} - |