14 lines
314 B
C++
14 lines
314 B
C++
|
#pragma once
|
||
|
#include <cstdint>
|
||
|
#include "netsync/CProjectBaseSyncDataNode.hpp"
|
||
|
|
||
|
#pragma pack(push, 2)
|
||
|
class CSectorDataNode : CSyncDataNodeFrequent
|
||
|
{
|
||
|
public:
|
||
|
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)
|