9 lines
134 B
GDScript
9 lines
134 B
GDScript
extends Node2D
|
|
|
|
func _ready() -> void:
|
|
print("game _ready")
|
|
GameManager.set_label($labels/ScoreLabel)
|
|
|
|
func _init() -> void:
|
|
pass
|