mirror of
https://github.com/tonytins/citylimits.git
synced 2025-03-21 15:11:21 +00:00
10 lines
253 B
GDScript
10 lines
253 B
GDScript
extends BoxContainer
|
|
|
|
onready var city_name = $CityNameLbl
|
|
onready var money = $Money/MoneyLbl
|
|
onready var year = $YearLbl
|
|
|
|
func _process(delta):
|
|
city_name.text = SimData.city_name
|
|
money.text = str(SimData.budget)
|
|
year.text = "Y" + str(SimData.year)
|