mirror of
https://github.com/godotengine/gdnative-demos.git
synced 2026-01-02 09:48:30 +03:00
8 lines
168 B
GDScript
8 lines
168 B
GDScript
extends Control
|
|
|
|
onready var TestClass = preload("res://bin/testclass.gdns")
|
|
|
|
func _ready():
|
|
var test_object = TestClass.new()
|
|
test_object.test_method("Hello World")
|