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
23 lines
426 B
C++
23 lines
426 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include "../base/datBase.hpp"
|
|
|
|
enum eTunableType
|
|
{
|
|
TunableType_DONTCARE = -1,
|
|
TunableType_UNK0,
|
|
TunableType_4BYTE,
|
|
TunableType_1BYTE,
|
|
};
|
|
|
|
class CTunables : public rage::datBase
|
|
{
|
|
public:
|
|
char pad_0000[104]; //0x0008
|
|
uint64_t m_bPtr; //0x0070
|
|
uint16_t m_bCount; //0x0078
|
|
char pad_007A[0x4E]; //0x007A
|
|
}; //Size: 0x00C8
|
|
static_assert(sizeof(CTunables) == 0xC8);
|