mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-19 07:28:04 +08:00
17 lines
341 B
C++
17 lines
341 B
C++
![]() |
#pragma once
|
||
|
|
||
|
class CPedWeaponManager
|
||
|
{
|
||
|
public:
|
||
|
char pad_0000[32]; //0x0000
|
||
|
class CWeaponInfo* m_weapon_info; //0x0020
|
||
|
}; //Size: 0x0028
|
||
|
static_assert(sizeof(CPedWeaponManager) == 0x28);
|
||
|
|
||
|
class CWeaponInfo
|
||
|
{
|
||
|
public:
|
||
|
char pad_0000[16]; //0x0000
|
||
|
uint32_t m_model_hash; //0x0010
|
||
|
}; //Size: 0x0014
|
||
|
static_assert(sizeof(CWeaponInfo) == 0x14);
|