aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/moe/nea/caelo/config/OptiCache.kt
blob: e18680a64246c5936f82226eddead1647bde0305 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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

	@ConfigEditorBoolean
	@ConfigOption(name = "Enable RegExp cache", desc = "Cache RegExp compilation")
	@Expose
	@JvmField
	var regexCache = true
}