Files
hsgj25-growth/growth/Card/card.gd
2025-10-04 23:35:16 +02:00

14 lines
239 B
GDScript

extends Control
@export var behaviors = []
@export var title = ""
func _ready() -> void:
$CenterContainer/RichTextLabel.text = title
func activate(world, activator):
for behavior in behaviors:
behavior.activate(world, activator)