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