mirror of
https://github.com/tonytins/citylimits.git
synced 2025-03-20 14:51:22 +00:00
11 lines
205 B
GDScript3
11 lines
205 B
GDScript3
|
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)
|