mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 22:47:32 +08:00
d81f392e61
* feat(Script): Ported BBv2 script classes * fix: Change hard tab indents to 4 width space indents
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) |