Files
jass-learner/scenes/player_1_play_pile.gd
Aspergerli 5d937e42d7 func: turn
2026-03-19 11:48:25 +01:00

15 lines
285 B
GDScript

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