mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2025-01-04 00:23:23 +08:00
16 lines
284 B
C++
16 lines
284 B
C++
|
#pragma once
|
||
|
#include <cstdint>
|
||
|
|
||
|
#include "scrNativeRegistration.hpp"
|
||
|
|
||
|
#pragma pack(push, 1)
|
||
|
namespace rage
|
||
|
{
|
||
|
class scrNativeRegistrationTable
|
||
|
{
|
||
|
scrNativeRegistration *m_entries[0xFF];
|
||
|
std::uint32_t m_unk;
|
||
|
bool m_initialized;
|
||
|
};
|
||
|
}
|
||
|
#pragma pack(pop)
|