blob: 365ce2dbe7d51253b35dc383489e854b961293b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package moe.nea.caelo.config
import com.google.gson.annotations.Expose
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption
class OptiCache {
@ConfigEditorBoolean
@ConfigOption(name = "Enable CIT cache", desc = "Cache CIT property lookups")
@Expose
@JvmField
var citCache = true
}
|