Files
pomchronicles/interactable.gd
2025-08-07 01:02:48 -04:00

13 lines
244 B
GDScript

class_name Interactable extends StaticBody2D
var busy : bool = false
var queue : GuildQueue
signal interaction_complete()
func _ready() -> void:
queue = $Queue
func interact(interactor, service : String = ""):
interaction_complete.emit()