mirror of
https://github.com/tonytins/citylimits.git
synced 2025-03-19 14:21:22 +00:00
- Removed UI from ZC's Dress Up (may return in a later time) - Power stations - Simplified UI - Time now works - Income and expenses
10 lines
192 B
GDScript
10 lines
192 B
GDScript
extends Node2D
|
|
|
|
onready var quarters = $Quarters
|
|
|
|
func _on_Quarters_timeout():
|
|
SimData.year += 1
|
|
SimData.prev_quarter = SimData.quarter
|
|
|
|
SimEvents.emit_signal("budget")
|
|
quarters.start()
|