NPCs can take quests!

This commit is contained in:
2025-08-07 01:02:48 -04:00
parent 6bfbd4b70c
commit fb312401cd
14 changed files with 133 additions and 76 deletions

View File

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