blob: e8d5906fb9c7f762c8a0695bd721c8587acb7df5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package moe.nea.ledger.config
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption
class Synchronization {
@ConfigOption(name = "Test Option", desc = "Test Description")
@ConfigEditorBoolean
@JvmField
var testOption = false
}
|