mirror of
https://github.com/tonytins/citylimits
synced 2025-12-18 13:54:43 -05:00
Implemented basic buying functions
- Renamed more scripts - Switched license to Artistic 2.0
This commit is contained in:
parent
8435cab605
commit
0b60335591
17 changed files with 330 additions and 428 deletions
10
scripts/city_status.gd
Normal file
10
scripts/city_status.gd
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue