mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 14:37:31 +08:00
d81f392e61
* feat(Script): Ported BBv2 script classes * fix: Change hard tab indents to 4 width space indents
17 lines
369 B
C++
17 lines
369 B
C++
#pragma once
|
|
#include "scrProgram.hpp"
|
|
#include "../rage/joaat.hpp"
|
|
|
|
#pragma pack(push, 1)
|
|
namespace rage
|
|
{
|
|
class scrProgramTableEntry
|
|
{
|
|
public:
|
|
scrProgram* m_program; // 0x00
|
|
char m_Pad1[0x04]; // 0x08
|
|
joaat_t m_hash; // 0x0C
|
|
};
|
|
static_assert(sizeof(scrProgramTableEntry) == 0x10);
|
|
}
|
|
#pragma pack(pop) |