mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 14:37:31 +08:00
17 lines
338 B
C++
17 lines
338 B
C++
#pragma once
|
|
|
|
#pragma pack(push, 8)
|
|
namespace rage
|
|
{
|
|
class scriptHandler;
|
|
class scriptHandlerNetComponent
|
|
{
|
|
public:
|
|
virtual ~scriptHandlerNetComponent() = default;
|
|
|
|
public:
|
|
scriptHandler *m_script_handler; // 0x08
|
|
};
|
|
static_assert(sizeof(scriptHandlerNetComponent) == 0x10);
|
|
}
|
|
#pragma pack(pop) |