mirror of
https://github.com/swordbluesword/PalWorld-NetCrack.git
synced 2025-04-29 02:47:17 +09:00
46 lines
1.7 KiB
C++
46 lines
1.7 KiB
C++
#pragma once
|
|
|
|
// Dumped with Dumper-7!
|
|
|
|
|
|
namespace SDK
|
|
{
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
// ENUMS
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
enum class ELobbyBeaconJoinState : uint8
|
|
{
|
|
None = 0,
|
|
SentJoinRequest = 1,
|
|
JoinRequestAcknowledged = 2,
|
|
ELobbyBeaconJoinState_MAX = 3,
|
|
};
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
// STRUCTS
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
// 0xC (0x18 - 0xC)
|
|
// ScriptStruct Lobby.LobbyPlayerStateActorInfo
|
|
struct FLobbyPlayerStateActorInfo : public FFastArraySerializerItem
|
|
{
|
|
public:
|
|
uint8 Pad_F06[0x4]; // Fixing Size After Last Property [ Dumper-7 ]
|
|
class ALobbyBeaconPlayerState* LobbyPlayerState; // 0x10(0x8)(ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic)
|
|
};
|
|
|
|
// 0x18 (0x120 - 0x108)
|
|
// ScriptStruct Lobby.LobbyPlayerStateInfoArray
|
|
struct FLobbyPlayerStateInfoArray : public FFastArraySerializer
|
|
{
|
|
public:
|
|
TArray<struct FLobbyPlayerStateActorInfo> Players; // 0x108(0x10)(ZeroConstructor, NativeAccessSpecifierPrivate)
|
|
class ALobbyBeaconState* ParentState; // 0x118(0x8)(ZeroConstructor, RepSkip, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPrivate)
|
|
};
|
|
|
|
}
|
|
|
|
|