func: turn

This commit is contained in:
Aspergerli
2026-03-19 11:48:25 +01:00
parent 637eaaca30
commit 5d937e42d7
4 changed files with 34 additions and 7 deletions

View File

@@ -0,0 +1,14 @@
extends Pile
signal played
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
pass # Replace with function body.
func play_check():
print("waiting")
enable_drop_zone = true
while true:
if get_top_cards(1) != null:
played.emit()
break