Implemented basic buying functions

- Renamed more scripts
- Switched license to Artistic 2.0
This commit is contained in:
Tony Bark 2021-05-20 00:58:17 -04:00
parent 8435cab605
commit 0b60335591
17 changed files with 330 additions and 428 deletions

10
scripts/city_status.gd Normal file
View 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)