blob: 86ccbf74f0a5db09d853fdddb993d18f3318ef43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package moe.nea.ledger.config
import io.github.notenoughupdates.moulconfig.gui.GuiComponent
import io.github.notenoughupdates.moulconfig.gui.component.TextComponent
import io.github.notenoughupdates.moulconfig.gui.editors.ComponentEditor
import io.github.notenoughupdates.moulconfig.processor.ProcessedOption
import moe.nea.ledger.Ledger
class UpdateUi(option: ProcessedOption) : ComponentEditor(option) {
val delegate by lazy {// TODO
TextComponent("Hier könnte ihre werbung stehen")
}
override fun getDelegate(): GuiComponent {
return delegate
}
}
|