godot.core.KtSignalInfo.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of godot-library-release Show documentation
Show all versions of godot-library-release Show documentation
Contains godot api as kotlin classes and jvm cpp interaction code.
package godot.core
data class KtSignalInfo(
val name: String,
val _arguments: List
) {
val arguments: Array
get() = _arguments.toTypedArray()
}