main.gd 194 B

123456789
  1. extends Control
  2. # load the SIMPLE library
  3. const SIMPLE = preload("res://bin/simple.gdns")
  4. onready var data = SIMPLE.new()
  5. func _on_Button_pressed():
  6. $Label.text = "Data = " + data.get_data()