ktx.artemis.arrays.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ktx-artemis Show documentation
Show all versions of ktx-artemis Show documentation
Artemis-odb entity component system utilities for Kotlin libGDX applications.
The newest version!
package ktx.artemis
import kotlin.reflect.KClass
internal fun Array>.asJavaClasses(): Array> =
Array(size) { index -> this[index].java }