12 lines
220 B
C++
12 lines
220 B
C++
#include "hooking.hpp"
|
|
|
|
namespace big
|
|
{
|
|
bool hooks::fragment_physics_crash_2(float* a1, float* a2)
|
|
{
|
|
if (!a1 || !a2)
|
|
return false;
|
|
|
|
return g_hooking->get_original<hooks::fragment_physics_crash_2>()(a1, a2);
|
|
}
|
|
} |