Moved everything into a file system. Links broken.
This commit is contained in:
12
scripts/interactable.gd
Normal file
12
scripts/interactable.gd
Normal 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()
|
||||
Reference in New Issue
Block a user