@abstract extends Node2D class_name StructureBehaviour @onready var structure_parent : Structure = get_parent() func _ready() -> void: Ticker.tick.connect(_tick) @abstract func _tick(current_tick : int) -> void