initial commit

This commit is contained in:
saarsena@gmail.com 2026-04-22 10:19:57 -04:00
commit c2bb3893a9
1038 changed files with 75846 additions and 0 deletions

View file

@ -0,0 +1,13 @@
extends Node3D
signal interacted(description: String)
@export var description: String = "With a close eye you notice the once red hue of the faded statue before you."
func _ready() -> void:
add_to_group("interactable")
func interact() -> void:
interacted.emit(description)