GTAV-Classes-private/script/scrNativeRegistrationTable.hpp

18 lines
297 B
C++
Raw Permalink Normal View History

2024-09-25 08:11:17 -04:00
#pragma once
#include <cstdint>
#include "scrNativeRegistration.hpp"
#pragma pack(push, 1)
namespace rage
{
class scrNativeRegistrationTable
{
public:
scrNativeRegistration *m_entries[0xFF];
std::uint32_t m_unk;
bool m_initialized;
};
}
#pragma pack(pop)