This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.

15 lines
233 B
C++
Raw Normal View History

#pragma once
namespace big
{
namespace freemode
{
inline void NETWORK_CAN_BAIL(rage::scrNativeCallContext* src)
{
LOG(INFO) << "NATIVE_HOOK => NETWORK_CAN_BAIL : TRIGGERED";
src->set_return_value<BOOL>(false);
}
}
}