mirror of
https://github.com/godotengine/gdnative-demos.git
synced 2026-01-04 22:10:30 +03:00
9 lines
165 B
GDScript
9 lines
165 B
GDScript
extends Control
|
|
|
|
onready var TestClass = preload("res://TestClass.gdn")
|
|
|
|
func _ready():
|
|
var test_object = TestClass.new()
|
|
|
|
test_object.test_method("Hello World")
|