I have the following situation atm: ```object vr {...
# announcements
e
I have the following situation atm:
Copy code
object vr { 
    fun MemoryStack.VREvent() = .. 
}
now, I'd like to call that method from another place in this way:
Copy code
fun MemoryStack.handleInput() { 
    val event = vr.VREvent() // instead of vr.apply { VREvent() }
}
Is there any way to achieve that?