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
276 B
C++
16 lines
276 B
C++
#pragma once
|
|
|
|
#pragma pack(push, 1)
|
|
namespace rage
|
|
{
|
|
class scriptHandler;
|
|
class scriptHandlerNetComponent
|
|
{
|
|
public:
|
|
virtual ~scriptHandlerNetComponent() = default;
|
|
|
|
public:
|
|
scriptHandler *m_script_handler; // 0x08
|
|
};
|
|
}
|
|
#pragma pack(pop) |