First Commit

This commit is contained in:
2026-05-24 17:10:09 -03:00
commit 0b0113fbde
222 changed files with 67094 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
extends HBoxContainer
@onready var life_label = $life_label
func _ready():
life_label.text = str(3)
func update_life(health: int):
life_label.text = "%d" % health