All Downloads are FREE. Search and download functionalities are using the official Maven repository.

godot.core.KtSignalInfo.kt Maven / Gradle / Ivy

The newest version!
package godot.core

data class KtSignalInfo(
    val name: String,
    val _arguments: List
) {
    val arguments: Array
        get() = _arguments.toTypedArray()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy