This commit is contained in:
Rendo 2025-10-17 18:22:49 +05:00
commit 074bb21ffd
18 changed files with 99 additions and 51 deletions

View file

@ -4,3 +4,9 @@ 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