11 lines
288 B
GDScript
11 lines
288 B
GDScript
extends Control
|
|
|
|
@onready var ap_counter = $MarginContainer/BoxContainer/BoxContainer/VBoxContainer/APLeftCounter
|
|
@onready var turn_counter = $MarginContainer/BoxContainer/BoxContainer/VBoxContainer/TurnLeftCounter
|
|
|
|
func _on_ready():
|
|
ap_counter.text = "0"
|
|
turn_counter.text = "0"
|
|
|
|
|
|
|