fix(CWeaponInfo & CAmmoProjectileInfo): Make subclass members public. (#41)

This commit is contained in:
Reece Watson 2022-09-30 14:19:42 -04:00 committed by GitHub
parent 1999053fa5
commit 36a7681d8b
2 changed files with 3 additions and 0 deletions

View File

@ -27,6 +27,7 @@ public:
float m_friction_multiplier; //0x0078
class sExplosion
{
public:
enum eExplosionTag m_default; //0x0000
enum eExplosionTag m_hit_car; //0x0004
enum eExplosionTag m_hit_truck; //0x0008

View File

@ -56,6 +56,7 @@ public:
eDamageType m_damage_type; //0x0020
class sExplosion
{
public:
enum eExplosionTag m_default; //0x0000
enum eExplosionTag m_hit_car; //0x0004
enum eExplosionTag m_hit_truck; //0x0008
@ -66,6 +67,7 @@ public:
static_assert(sizeof(sExplosion) == 0x18);
struct sFrontClearTestParams
{
public:
bool m_should_perform_front_clear_test; //0x0000
float m_forward_offset; //0x0004
float m_vertical_offset; //0x0008