Skip to content

Commit 55c53b7

Browse files
committed
fix
1 parent dc27c0b commit 55c53b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Server/mods/deathmatch/logic/luadefs/CLuaPedDefs.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ class CLuaPedDefs : public CLuaDefs
5151
LUA_DECLARE(GetPedOccupiedVehicle);
5252
LUA_DECLARE(GetPedOccupiedVehicleSeat);
5353
LUA_DECLARE(IsPedInVehicle);
54+
static bool IsPedEnteringToVehicle(CPed* const ped) noexcept;
55+
static bool IsPedExitingFromVehicle(CPed* const ped) noexcept;
5456
LUA_DECLARE(GetPedAmmoInClip);
5557
LUA_DECLARE(GetPedTotalAmmo);
5658
static bool IsPedReloadingWeapon(CPed* const ped) noexcept;
@@ -80,6 +82,4 @@ class CLuaPedDefs : public CLuaDefs
8082
LUA_DECLARE(SetPedHeadless);
8183
LUA_DECLARE(SetPedFrozen);
8284
static bool ReloadPedWeapon(lua_State* vm, CPed* const ped) noexcept;
83-
static bool IsPedEnteringToVehicle(CPed* const ped) noexcept;
84-
static bool IsPedExitingFromVehicle(CPed* const ped) noexcept;
8585
};

0 commit comments

Comments
 (0)