From 7c667f10f6545ec1cbae3daf9cc7a7b70d923af1 Mon Sep 17 00:00:00 2001 From: Arthur <121949966+ShinyWasabi@users.noreply.github.com> Date: Tue, 3 Sep 2024 19:10:51 +0300 Subject: [PATCH] Code review change --- src/function_types.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/function_types.hpp b/src/function_types.hpp index 7539bb00..c199f11f 100644 --- a/src/function_types.hpp +++ b/src/function_types.hpp @@ -229,5 +229,5 @@ namespace big::functions using is_ped_enemies_with = bool (*)(CPedIntelligence* from, CPed* target, bool check_relationship, bool skip_friend_check, bool skip_combat_task_check); using can_do_damage_to_ped = bool (*)(CPed* from, CWeaponInfo* current_weapon, CPed* target); - using get_last_keyboard_state = int32_t (*)(); + using get_last_keyboard_state = KeyboardState (*)(); }