godot.registration.Entry.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.registration
import kotlin.reflect.KClass
abstract class Entry {
class Context(val registry: ClassRegistry)
abstract fun Context.init()
abstract fun Context.initEngineTypes()
abstract fun Context.getRegisteredClasses(): List>
abstract val classRegistrarCount: Int
abstract val projectName: String
}