Moved everything into a file system. Links broken.

This commit is contained in:
2025-08-10 03:58:03 -04:00
parent 4e0b42eb23
commit 434216ca29
182 changed files with 1141 additions and 252 deletions

12
scripts/interactable.gd Normal file
View File

@@ -0,0 +1,12 @@
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()