2022-01-28 07:02:15 +08:00
|
|
|
#pragma once
|
2021-12-07 02:36:09 +08:00
|
|
|
#include "CPlayerInfo.hpp"
|
2022-01-28 07:02:15 +08:00
|
|
|
#include "CNonPhysicalPlayerData.hpp"
|
|
|
|
#include "netPlayer.hpp"
|
2021-12-07 02:36:09 +08:00
|
|
|
|
2022-05-19 04:01:37 +08:00
|
|
|
#pragma pack(push, 1)
|
|
|
|
|
2022-01-28 07:02:15 +08:00
|
|
|
class CNetGamePlayer : public rage::netPlayer
|
2021-12-07 02:36:09 +08:00
|
|
|
{
|
|
|
|
public:
|
2022-05-19 04:01:37 +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
|
|
|
|
char pad_0022[3]; //0x0022
|
|
|
|
uint16_t m_complaints; //0x0025
|
|
|
|
char pad_0027[17]; //0x0027
|
|
|
|
class CNetGamePlayer *m_unk_net_player_list[10]; //0x0038
|
|
|
|
char pad_0088[24]; //0x0088
|
|
|
|
class CPlayerInfo *m_player_info; //0x00A0
|
2022-01-28 07:02:15 +08:00
|
|
|
}; //Size: 0x00A8
|
|
|
|
static_assert(sizeof(CNetGamePlayer) == 0xA8);
|
2022-05-19 04:01:37 +08:00
|
|
|
|
|
|
|
#pragma pack(pop)
|