Most of prototype! yay

This commit is contained in:
2025-05-01 08:27:30 -05:00
parent 11605c9f17
commit 30bf202118
51 changed files with 1906 additions and 52 deletions

View File

@@ -0,0 +1,10 @@
extends StaticBody2D
class_name InteractableBody
var parent: Interactable
func _ready() -> void:
parent = get_parent()
func interact(player: Player):
parent.interact(player)