Work on pickups and multiplayer

This commit is contained in:
2026-03-19 23:50:29 -04:00
parent d128501f7c
commit 9d931a3b46
42 changed files with 771 additions and 324 deletions

View File

@@ -8,11 +8,11 @@ func _ready() -> void:
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
func _process(_delta: float) -> void:
pass
func _on_health_changed(current : int, max : int) -> void:
max_value = max
func _on_health_changed(current : int, max_amt : int) -> void:
max_value = max_amt
value = current
func _on_poison_status_changed(poisoned : bool) -> void: