mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2025-01-03 16:13:21 +08:00
fix(scrNativeHandler): Missing using containing scrNativeHandler (#66)
This commit is contained in:
parent
7fe43eb735
commit
46b025293a
@ -5,9 +5,6 @@
|
|||||||
|
|
||||||
namespace rage
|
namespace rage
|
||||||
{
|
{
|
||||||
using scrNativeHash = std::int64_t;
|
|
||||||
using scrNativePair = std::pair<scrNativeHash, scrNativeHash>;
|
|
||||||
|
|
||||||
class scrNativeCallContext
|
class scrNativeCallContext
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
@ -57,4 +54,8 @@ namespace rage
|
|||||||
std::uint32_t m_data[48];
|
std::uint32_t m_data[48];
|
||||||
};
|
};
|
||||||
static_assert(sizeof(scrNativeCallContext) == 0xE0);
|
static_assert(sizeof(scrNativeCallContext) == 0xE0);
|
||||||
|
|
||||||
|
using scrNativeHash = std::int64_t;
|
||||||
|
using scrNativePair = std::pair<scrNativeHash, scrNativeHash>;
|
||||||
|
using scrNativeHandler = void(*)(scrNativeCallContext*);
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user