mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2025-01-03 16:13:21 +08:00
15 lines
190 B
C++
15 lines
190 B
C++
|
#pragma once
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace rage
|
||
|
{
|
||
|
class CTunables
|
||
|
{
|
||
|
public:
|
||
|
char pad_0000[112]; //0x0000
|
||
|
uint64_t m_bPtr; //0x0070
|
||
|
uint16_t m_bCount; //0x0078
|
||
|
}; //Size: 0x007A
|
||
|
}
|