godot.runtime.Entry.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of godot-runtime Show documentation
Show all versions of godot-runtime Show documentation
Contains runtime classes and core types to make the jvm interact with cpp
package godot.runtime
abstract class Entry {
class Context(val registry: ClassRegistry)
abstract fun Context.init()
abstract fun Context.initEngineTypes()
}