Files
pomchronicles/scripts/interactable.gd

13 lines
244 B
GDScript3
Raw Normal View History

class_name Interactable extends StaticBody2D
var busy : bool = false
var queue : GuildQueue
2025-08-07 01:02:48 -04:00
signal interaction_complete()
func _ready() -> void:
queue = $Queue
func interact(interactor, service : String = ""):
2025-08-07 01:02:48 -04:00
interaction_complete.emit()