mirror of
https://github.com/YimMenu/RDR-Classes.git
synced 2024-12-22 22:47:31 +08:00
21 lines
547 B
C++
21 lines
547 B
C++
|
#pragma once
|
||
|
#include <cstdint>
|
||
|
|
||
|
class CObject;
|
||
|
namespace rage
|
||
|
{
|
||
|
class netObject
|
||
|
{
|
||
|
public:
|
||
|
virtual ~netObject() = 0;
|
||
|
|
||
|
char m_Pad[0x38]; // 0x08
|
||
|
uint16_t m_ObjectType; // 0x40
|
||
|
uint16_t m_ObjectId; // 0x42
|
||
|
uint8_t m_Unk; // 0x44
|
||
|
uint8_t m_OwnerId; // 0x45
|
||
|
uint8_t m_MigratingOwnerId; // 0x46
|
||
|
bool m_IsRemotelyControlled; // 0x47
|
||
|
};
|
||
|
static_assert(sizeof(rage::netObject) == 0x48);
|
||
|
}
|