mirror of
https://codeberg.org/ProgramSnail/konkr_game_3d.git
synced 2025-12-06 06:38:47 +00:00
8 lines
118 B
GDScript
8 lines
118 B
GDScript
extends Spatial
|
|
|
|
onready var info = $Info
|
|
|
|
var money = 0
|
|
|
|
func _process(_delta):
|
|
info.text = "Money: " + str(money)
|