Update classes (#85)

* Create ClonedTakeOffPedVariationInfo.cpp
This commit is contained in:
maybegreat48 2022-12-04 15:22:08 +00:00 committed by GitHub
parent ee2f1f3a1d
commit bfb07f6098
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,13 @@
#pragma once
#include <cstdint>
#pragma pack(push, 1)
class ClonedTakeOffPedVariationInfo
{
public:
char pad_0000[112]; //0x0000
uint32_t m_parachute_override_model_hash; //0x0070
char pad_0074[20]; //0x0074
}; //Size: 0x0088
static_assert(sizeof(ClonedTakeOffPedVariationInfo) == 0x88);
#pragma pack(pop)

View File

@ -57,6 +57,18 @@ public:
}; //Size: 0x0314
static_assert(sizeof(NetworkGameFilterMatchmakingComponent) == 0x314);
class MatchmakingAttributes
{
public:
uint32_t m_game_mode; //0x0000
uint32_t m_num_params; //0x0004
uint32_t m_param_unk[8]; //0x0008
char m_param_names[8][24]; //0x0028
uint32_t m_param_values[8]; //0x00E8
uint32_t m_params_bitset; //0x0108
}; //Size: 0x010C
static_assert(sizeof(MatchmakingAttributes) == 0x10C);
class NetworkGameFilter
{
public: