From 0852ca49dba27129ee784337b3c5508f9f1500f1 Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sun, 10 Nov 2024 01:17:28 +0000 Subject: [PATCH] Rename dash_in_air to jump_dash --- player.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/player.h b/player.h index 3cf475a..6186f4d 100644 --- a/player.h +++ b/player.h @@ -35,7 +35,7 @@ struct player_control { bool lctrl_last; bool lctrl_pressed; bool dash; - bool dash_in_air; + bool jump_dash; }; typedef struct movement Movement;