2021-12-07 02:36:09 +08:00
|
|
|
#pragma once
|
2022-06-01 13:49:36 +08:00
|
|
|
|
2022-08-26 04:06:34 +08:00
|
|
|
#include "../weapon/CWeaponInfo.hpp"
|
2021-07-26 18:03:22 +08:00
|
|
|
|
2022-06-01 13:49:36 +08:00
|
|
|
#include <cstdint>
|
|
|
|
|
2021-02-09 05:44:51 +08:00
|
|
|
class CPedWeaponManager
|
|
|
|
{
|
|
|
|
public:
|
2022-11-09 05:11:50 +08:00
|
|
|
char pad_0000[16]; //0x0000
|
|
|
|
class CPed* m_owner; //0x0010
|
|
|
|
uint32_t m_selected_weapon_hash; //0x0018
|
|
|
|
char pad_001C[4]; //0x001C
|
|
|
|
class CWeaponInfo* m_weapon_info; //0x0020
|
|
|
|
char pad_0028[72]; //0x0028
|
|
|
|
class CWeaponInfo* m_vehicle_weapon_info; //0x0070
|
2023-02-03 06:55:50 +08:00
|
|
|
class CObject* m_weapon_object; //0x0078
|
|
|
|
}; //Size: 0x0080
|
|
|
|
static_assert(sizeof(CPedWeaponManager) == 0x80);
|