mirror of
https://github.com/tonytins/citylimits.git
synced 2025-03-20 14:51:22 +00:00
9 lines
193 B
GDScript3
9 lines
193 B
GDScript3
|
extends Node
|
||
|
|
||
|
onready var gui = $Controls/GUI
|
||
|
onready var advisor = $Controls/GUI/AdvsiorNotice
|
||
|
|
||
|
# Called when the node enters the scene tree for the first time.
|
||
|
func _ready():
|
||
|
advisor.show()
|