mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 10:05:34 +00:00
8 lines
252 B
GDScript
8 lines
252 B
GDScript
extends Node
|
|
|
|
|
|
func _enter_tree():
|
|
const RUNTIME_SERVER = "GDAIRuntimeServer"
|
|
if ClassDB.class_exists(RUNTIME_SERVER) and ClassDB.can_instantiate(RUNTIME_SERVER):
|
|
var runtime_server = ClassDB.instantiate(RUNTIME_SERVER)
|
|
add_child(runtime_server)
|