blob: aaaccce683eb25e3ccb55a3c6c024a0d968fada3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package moe.nea.caelo.config
import com.google.gson.annotations.Expose
import io.github.notenoughupdates.moulconfig.Config
import io.github.notenoughupdates.moulconfig.annotations.Category
class ConfigData : Config() {
@Category(name = "OptiCache", desc = "Optifine speed improvements")
@JvmField
@Expose
val optiCache = OptiCache()
override fun saveNow() {
CConfig.managed.saveToFile()
}
override fun getTitle(): String {
return "§bVelox Caelo§7 by §anea89"
}
}
|