prefix unused variables with _

This commit is contained in:
Fabien Freling 2026-04-22 14:31:01 +02:00
parent e26bf7ea2b
commit 9a92936a53

View file

@ -17,5 +17,5 @@ func _ready():
var current_scene = s.instantiate()
$MarginContainer.add_child(current_scene)
func _update_state(old: Global.State, new: Global.State):
func _update_state(_old: Global.State, _new: Global.State):
print("updated state")