first commit

This commit is contained in:
Peter Hinton
2026-06-21 17:00:58 -06:00
commit a20cfbe748
78 changed files with 2784 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
extends Area2D
signal player_entered
func _on_body_entered(body: Node2D) -> void:
if body.name == "player":
print("You win!")
player_entered.emit(body)