getValue

operator fun getValue(u: Any?, property: KProperty<*>): T

Support for delegated properties example: var autoaim by boolean(name = "autoaim", default = true) if(!autoaim) autoaim = true

Important: To use values a class has to be configurable


@JvmName(name = "getValue")
fun getValue(): Any