extends Control func _ready(): pass # Replace with function body. #func _process(delta): # pass func update_player_hp(hp, hpmax): $PlayerHp.text = "Player: %d/%d" % [hp, hpmax] func update_enemy_hp(hp, hpmax): $EnemyHp.text = "Enemy: %d/%d" % [hp, hpmax]