Files
gdnative-demos/c/instance_binding/project/main.gd
Aaron Franke 69527eb7aa Refactor remaining C demos to match simple C demo
The projects don't work as of this commit, but are fixed in a later commit in the same PR.
2020-08-31 00:12:51 -04:00

11 lines
219 B
GDScript

extends Control
# load the SIMPLE library
const InstanceBindingDemo = preload("res://bin/instance_binding_demo.gdns")
onready var data = InstanceBindingDemo.new()
func _on_Button_pressed():
# do the test here
pass