mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 14:37:31 +08:00
10 lines
151 B
C++
10 lines
151 B
C++
|
#pragma once
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
class CWeaponBoneId
|
||
|
{
|
||
|
public:
|
||
|
uint16_t m_bone_id;
|
||
|
}; // Size: 0x0002
|
||
|
static_assert(sizeof(CWeaponBoneId) == 0x2);
|