mirror of
https://github.com/tonytins/citylimits.git
synced 2025-03-20 14:51:22 +00:00
8 lines
153 B
GDScript3
8 lines
153 B
GDScript3
|
extends Panel
|
||
|
|
||
|
func _ready():
|
||
|
$CityMenus/CityNameLbl.text = CityData.city_name
|
||
|
|
||
|
func _process(delta):
|
||
|
$CityStatus/MoneyLbl.text = str(CityData.budget)
|