GTAV-Classes/CNetGamePlayer.hpp

19 lines
509 B
C++
Raw Normal View History

2022-01-28 07:02:15 +08:00
#pragma once
#include "CPlayerInfo.hpp"
2022-01-28 07:02:15 +08:00
#include "CNonPhysicalPlayerData.hpp"
#include "netPlayer.hpp"
2022-01-28 07:02:15 +08:00
class CNetGamePlayer : public rage::netPlayer
{
public:
2022-01-28 07:02:15 +08:00
char pad_0008[8]; //0x0008
class CNonPhysicalPlayerData *m_non_physical_player; //0x0010
uint32_t m_msg_id; //0x0018
char pad_001C[4]; //0x001C
uint8_t m_active_id; //0x0020
uint8_t m_player_id; //0x0021
2022-01-28 07:02:15 +08:00
char pad_0022[126]; //0x0022
class CPlayerInfo *m_player_info; //0x00A0
}; //Size: 0x00A8
static_assert(sizeof(CNetGamePlayer) == 0xA8);