mirror of
https://github.com/swordbluesword/PalWorld-NetCrack.git
synced 2025-04-29 02:47:17 +09:00
38 lines
1.1 KiB
C++
38 lines
1.1 KiB
C++
#pragma once
|
|
|
|
// Dumped with Dumper-7!
|
|
|
|
|
|
namespace SDK
|
|
{
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
// ENUMS
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
enum class EUdpMessageFormat : uint8
|
|
{
|
|
None = 0,
|
|
Json = 1,
|
|
TaggedProperty = 2,
|
|
CborPlatformEndianness = 3,
|
|
CborStandardEndianness = 4,
|
|
EUdpMessageFormat_MAX = 5,
|
|
};
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
// STRUCTS
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
// 0x10 (0x10 - 0x0)
|
|
// ScriptStruct UdpMessaging.UdpMockMessage
|
|
struct FUdpMockMessage
|
|
{
|
|
public:
|
|
TArray<uint8> Data; // 0x0(0x10)(ZeroConstructor, NativeAccessSpecifierPublic)
|
|
};
|
|
|
|
}
|
|
|
|
|