citylimits/scripts/city_status.gd
Tony Bark 0b60335591 Implemented basic buying functions
- Renamed more scripts
- Switched license to Artistic 2.0
2021-05-20 00:58:17 -04:00

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)