Player can take quests, Adventurers in progress.

This commit is contained in:
2025-08-06 22:31:36 -04:00
parent d705ed0496
commit 6bfbd4b70c
15 changed files with 175 additions and 16 deletions

View File

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