mirror of
https://github.com/tonytins/citylimits.git
synced 2025-03-20 06:41:21 +00:00
10 lines
205 B
GDScript
10 lines
205 B
GDScript
extends BoxContainer
|
|
|
|
onready var city_name = $CityNameLbl
|
|
onready var money = $Money/MoneyLbl
|
|
|
|
func _ready():
|
|
city_name.text = SimData.city_name
|
|
|
|
func _process(delta):
|
|
money.text = str(SimData.budget)
|