PalWorld-NetCrack/libs/SDKLibrary/SDK/HttpBlueprint_structs.hpp
NightFyre 9a743d2b16 toggle fullbright feature
- Adjusted SDK UGameViewportClient class members and padding
- Created helper function to get local player
- precompile headers for SDK
- SDK made into a static library ( single compile as its never changed )
2024-01-29 06:39:29 -05:00

47 lines
1.3 KiB
C++

#pragma once
// Dumped with Dumper-7!
namespace SDK
{
//---------------------------------------------------------------------------------------------------------------------
// ENUMS
//---------------------------------------------------------------------------------------------------------------------
enum class EHttpVerbs : uint8
{
Post = 0,
Put = 1,
Delete = 2,
Patch = 3,
Get = 4,
MAX = 255,
};
enum class ERequestPresets : uint8
{
Json = 0,
Http = 1,
Url = 2,
Custom = 3,
ERequestPresets_MAX = 4,
};
//---------------------------------------------------------------------------------------------------------------------
// STRUCTS
//---------------------------------------------------------------------------------------------------------------------
// 0x50 (0x50 - 0x0)
// ScriptStruct HttpBlueprint.HttpHeader
struct FHttpHeader
{
public:
TMap<class FString, class FString> Headers; // 0x0(0x50)(NativeAccessSpecifierPrivate)
};
}