mirror of
https://github.com/tonytins/citylimits.git
synced 2025-03-20 23:01:22 +00:00
- Redid money cheat code - Reduced starting budget to 20k now that the money cheat codes can handle any additional income
8 lines
179 B
GDScript
8 lines
179 B
GDScript
extends Control
|
|
|
|
onready var debug_console = $Console
|
|
onready var advisor = $AdvsiorNotice
|
|
|
|
func _process(delta):
|
|
if Input.is_action_pressed("ui_cheats"):
|
|
debug_console.show()
|