mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2025-01-05 17:13:30 +08:00
d81f392e61
* feat(Script): Ported BBv2 script classes * fix: Change hard tab indents to 4 width space indents
15 lines
272 B
C++
15 lines
272 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
#pragma pack(push, 2)
|
|
class CSectorDataNode
|
|
{
|
|
public:
|
|
char pad_0x0[192]; //0x0
|
|
uint16_t m_pos_x; //0xC0
|
|
uint16_t m_pos_y; //0xC2
|
|
uint16_t m_pos_z; //0xC4
|
|
};
|
|
static_assert(sizeof(CSectorDataNode) == 0xC6);
|
|
#pragma pack(pop) |