Files
gdnative-demos/cpp/cpp_constructors/Main.gd
2018-12-01 16:16:31 +01:00

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")