tetris-mobile/Main.gd
2021-11-21 13:47:38 +01:00

9 lines
194 B
GDScript

extends Node
func _ready():
$UI.set_next_shape($GameBoard.next_shape)
$GameBoard.connect("score_changed", $UI, "update_score")
$GameBoard.connect("new_next_shape", $UI, "set_next_shape")