From 9a92936a53ac605342150499617bf910f3834e6f Mon Sep 17 00:00:00 2001 From: Fabien Freling Date: Wed, 22 Apr 2026 14:31:01 +0200 Subject: [PATCH] prefix unused variables with _ --- godot/main.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/godot/main.gd b/godot/main.gd index 0b81f04..17ea103 100644 --- a/godot/main.gd +++ b/godot/main.gd @@ -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")