Files

18 lines
327 B
GDScript
Raw Permalink Normal View History

2021-05-13 15:39:31 +02:00
"""
class GDDBTablesHeader
"""
class_name GDDBTablesHeader
tool
extends Control
signal add_table
# Called when the node enters the scene tree for the first time.
func _ready():
$add_table_btn.connect("pressed", self, "on_add_table_btn_pressed")
func on_add_table_btn_pressed():
emit_signal("add_table")