fix(scrNativeHandler): Missing using containing scrNativeHandler (#66)

This commit is contained in:
Yimura 2022-11-09 21:13:12 +01:00 committed by GitHub
parent 7fe43eb735
commit 46b025293a

View File

@ -5,9 +5,6 @@
namespace rage
{
using scrNativeHash = std::int64_t;
using scrNativePair = std::pair<scrNativeHash, scrNativeHash>;
class scrNativeCallContext
{
public:
@ -57,4 +54,8 @@ namespace rage
std::uint32_t m_data[48];
};
static_assert(sizeof(scrNativeCallContext) == 0xE0);
using scrNativeHash = std::int64_t;
using scrNativePair = std::pair<scrNativeHash, scrNativeHash>;
using scrNativeHandler = void(*)(scrNativeCallContext*);
}